A fork of Simple Time Tracker with WearOS support. (Now integrated upstream)
0

Configure Feed

Select the types of activity you want to include in your feed.

change untracked hint

razeeman (Dec 10, 2023, 9:48 AM +0300) 6649edca bcc9ee74

+41 -29
+41 -29
features/feature_settings/src/main/res/layout/settings_display_layout.xml
··· 60 60 android:layout_height="wrap_content"> 61 61 62 62 <androidx.appcompat.widget.AppCompatTextView 63 + android:id="@+id/tvSettingsUntrackedTimeHint" 64 + style="@style/SettingsSecondaryText" 65 + android:layout_width="0dp" 66 + android:layout_height="wrap_content" 67 + android:paddingTop="12dp" 68 + android:text="@string/change_record_untracked_time_hint" 69 + app:layout_constraintEnd_toEndOf="parent" 70 + app:layout_constraintStart_toStartOf="parent" 71 + app:layout_constraintTop_toTopOf="parent" /> 72 + 73 + <androidx.appcompat.widget.AppCompatTextView 63 74 android:id="@+id/tvSettingsShowUntracked" 64 75 style="@style/SettingsText" 65 76 android:layout_width="0dp" 66 77 android:layout_height="wrap_content" 78 + android:paddingTop="0dp" 67 79 android:text="@string/settings_show_untracked_time" 68 80 app:layout_constraintEnd_toStartOf="@id/checkboxSettingsShowUntrackedInRecords" 69 81 app:layout_constraintStart_toStartOf="parent" 70 - app:layout_constraintTop_toTopOf="parent" /> 82 + app:layout_constraintTop_toBottomOf="@+id/tvSettingsUntrackedTimeHint" /> 71 83 72 84 <androidx.appcompat.widget.AppCompatCheckBox 73 85 android:id="@+id/checkboxSettingsShowUntrackedInRecords" ··· 477 489 android:layout_width="match_parent" /> 478 490 479 491 <androidx.constraintlayout.widget.ConstraintLayout 480 - android:layout_width="match_parent" 492 + android:layout_width="match_parent" 493 + android:layout_height="wrap_content" 494 + android:paddingTop="12dp"> 495 + 496 + <androidx.appcompat.widget.AppCompatTextView 497 + android:id="@+id/tvSettingsUseMonthDayTime" 498 + style="@style/SettingsText" 499 + android:layout_width="0dp" 481 500 android:layout_height="wrap_content" 482 - android:paddingTop="12dp"> 501 + android:paddingTop="0dp" 502 + android:paddingBottom="0dp" 503 + android:text="@string/settings_use_monthday_time" 504 + app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime" 505 + app:layout_constraintStart_toStartOf="parent" 506 + app:layout_constraintTop_toTopOf="parent" /> 483 507 484 508 <androidx.appcompat.widget.AppCompatTextView 485 - android:id="@+id/tvSettingsUseMonthDayTime" 486 - style="@style/SettingsText" 487 - android:layout_width="0dp" 488 - android:layout_height="wrap_content" 489 - android:paddingTop="0dp" 490 - android:paddingBottom="0dp" 491 - android:text="@string/settings_use_monthday_time" 492 - app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime" 493 - app:layout_constraintStart_toStartOf="parent" 494 - app:layout_constraintTop_toTopOf="parent" /> 495 - 496 - <androidx.appcompat.widget.AppCompatTextView 497 - android:id="@+id/tvSettingsUseMonthDayTimeHint" 498 - style="@style/SettingsSecondaryText" 499 - android:layout_width="0dp" 500 - android:layout_height="wrap_content" 501 - app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime" 502 - app:layout_constraintStart_toStartOf="parent" 503 - app:layout_constraintTop_toBottomOf="@id/tvSettingsUseMonthDayTime" 504 - tools:text="13.07" /> 509 + android:id="@+id/tvSettingsUseMonthDayTimeHint" 510 + style="@style/SettingsSecondaryText" 511 + android:layout_width="0dp" 512 + android:layout_height="wrap_content" 513 + app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime" 514 + app:layout_constraintStart_toStartOf="parent" 515 + app:layout_constraintTop_toBottomOf="@id/tvSettingsUseMonthDayTime" 516 + tools:text="13.07" /> 505 517 506 518 <androidx.appcompat.widget.AppCompatCheckBox 507 - android:id="@+id/checkboxSettingsUseMonthDayTime" 508 - android:layout_width="wrap_content" 509 - android:layout_height="0dp" 510 - app:layout_constraintBottom_toBottomOf="@id/tvSettingsUseMonthDayTime" 511 - app:layout_constraintEnd_toEndOf="parent" 512 - app:layout_constraintTop_toTopOf="@id/tvSettingsUseMonthDayTime" /> 519 + android:id="@+id/checkboxSettingsUseMonthDayTime" 520 + android:layout_width="wrap_content" 521 + android:layout_height="0dp" 522 + app:layout_constraintBottom_toBottomOf="@id/tvSettingsUseMonthDayTime" 523 + app:layout_constraintEnd_toEndOf="parent" 524 + app:layout_constraintTop_toTopOf="@id/tvSettingsUseMonthDayTime" /> 513 525 514 526 </androidx.constraintlayout.widget.ConstraintLayout> 515 527