Skip to content

Commit

Permalink
change untracked hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Razeeman committed Dec 10, 2023
1 parent bcc9ee7 commit 6649edc
Showing 1 changed file with 40 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,27 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvSettingsUntrackedTimeHint"
style="@style/SettingsSecondaryText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingTop="12dp"
android:text="@string/change_record_untracked_time_hint"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvSettingsShowUntracked"
style="@style/SettingsText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:text="@string/settings_show_untracked_time"
app:layout_constraintEnd_toStartOf="@id/checkboxSettingsShowUntrackedInRecords"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toBottomOf="@+id/tvSettingsUntrackedTimeHint" />

<androidx.appcompat.widget.AppCompatCheckBox
android:id="@+id/checkboxSettingsShowUntrackedInRecords"
Expand Down Expand Up @@ -477,39 +489,39 @@
android:layout_width="match_parent" />

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="12dp">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="12dp">

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvSettingsUseMonthDayTime"
style="@style/SettingsText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:paddingBottom="0dp"
android:text="@string/settings_use_monthday_time"
app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
android:id="@+id/tvSettingsUseMonthDayTime"
style="@style/SettingsText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingTop="0dp"
android:paddingBottom="0dp"
android:text="@string/settings_use_monthday_time"
app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tvSettingsUseMonthDayTimeHint"
style="@style/SettingsSecondaryText"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSettingsUseMonthDayTime"
tools:text="13.07" />
android:id="@+id/tvSettingsUseMonthDayTimeHint"
style="@style/SettingsSecondaryText"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/checkboxSettingsUseMonthDayTime"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSettingsUseMonthDayTime"
tools:text="13.07" />

<androidx.appcompat.widget.AppCompatCheckBox
android:id="@+id/checkboxSettingsUseMonthDayTime"
android:layout_width="wrap_content"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="@id/tvSettingsUseMonthDayTime"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/tvSettingsUseMonthDayTime" />
android:id="@+id/checkboxSettingsUseMonthDayTime"
android:layout_width="wrap_content"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="@id/tvSettingsUseMonthDayTime"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/tvSettingsUseMonthDayTime" />

</androidx.constraintlayout.widget.ConstraintLayout>

Expand Down

0 comments on commit 6649edc

Please sign in to comment.