Skip to content

Commit 6649edc

Browse files
committed
change untracked hint
1 parent bcc9ee7 commit 6649edc

File tree

1 file changed

+40
-28
lines changed

1 file changed

+40
-28
lines changed

features/feature_settings/src/main/res/layout/settings_display_layout.xml

Lines changed: 40 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,27 @@
5959
android:layout_width="match_parent"
6060
android:layout_height="wrap_content">
6161

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+
6273
<androidx.appcompat.widget.AppCompatTextView
6374
android:id="@+id/tvSettingsShowUntracked"
6475
style="@style/SettingsText"
6576
android:layout_width="0dp"
6677
android:layout_height="wrap_content"
78+
android:paddingTop="0dp"
6779
android:text="@string/settings_show_untracked_time"
6880
app:layout_constraintEnd_toStartOf="@id/checkboxSettingsShowUntrackedInRecords"
6981
app:layout_constraintStart_toStartOf="parent"
70-
app:layout_constraintTop_toTopOf="parent" />
82+
app:layout_constraintTop_toBottomOf="@+id/tvSettingsUntrackedTimeHint" />
7183

7284
<androidx.appcompat.widget.AppCompatCheckBox
7385
android:id="@+id/checkboxSettingsShowUntrackedInRecords"
@@ -477,39 +489,39 @@
477489
android:layout_width="match_parent" />
478490

479491
<androidx.constraintlayout.widget.ConstraintLayout
480-
android:layout_width="match_parent"
481-
android:layout_height="wrap_content"
482-
android:paddingTop="12dp">
492+
android:layout_width="match_parent"
493+
android:layout_height="wrap_content"
494+
android:paddingTop="12dp">
483495

484496
<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" />
497+
android:id="@+id/tvSettingsUseMonthDayTime"
498+
style="@style/SettingsText"
499+
android:layout_width="0dp"
500+
android:layout_height="wrap_content"
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" />
495507

496508
<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" />
505517

506518
<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" />
513525

514526
</androidx.constraintlayout.widget.ConstraintLayout>
515527

0 commit comments

Comments
 (0)