Customize drawer clock text

This commit is contained in:
ajp_anton
2026-06-07 12:33:15 +00:00
parent ebbfad2524
commit 544a2cc56a
8 changed files with 698 additions and 40 deletions
+98 -40
View File
@@ -74,56 +74,114 @@
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/clock_font_picker_button" />
</LinearLayout>
<CheckBox
android:id="@+id/drawer_clock_custom_format_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/drawer_clock_custom_format_enabled" />
<LinearLayout
android:id="@+id/drawer_clock_custom_format_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<EditText
android:id="@+id/drawer_clock_custom_format_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="top|start"
android:hint="@string/clock_custom_format_hint"
android:importantForAutofill="no"
android:inputType="textMultiLine|textNoSuggestions"
android:maxLines="4"
android:minLines="2"
android:scrollHorizontally="false"
android:singleLine="false" />
</LinearLayout>
<CheckBox
android:id="@+id/drawer_date_custom_format_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/drawer_date_custom_format_enabled" />
<LinearLayout
android:id="@+id/drawer_date_custom_format_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<EditText
android:id="@+id/drawer_date_custom_format_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="top|start"
android:hint="@string/clock_custom_format_hint"
android:importantForAutofill="no"
android:inputType="textMultiLine|textNoSuggestions"
android:maxLines="4"
android:minLines="2"
android:scrollHorizontally="false"
android:singleLine="false" />
</LinearLayout>
<TextView
android:id="@+id/clock_custom_format_help_toggle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@string/clock_custom_format_help_show"
android:textAppearance="?attr/textAppearanceCaption" />
<LinearLayout
android:id="@+id/clock_custom_format_help_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<TextView
android:id="@+id/clock_custom_format_help_toggle"
android:id="@+id/clock_custom_format_help"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:text="@string/clock_custom_format_help_common"
android:textAppearance="?attr/textAppearanceCaption" />
<TextView
android:id="@+id/clock_custom_format_help_styling"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@string/clock_custom_format_help_show"
android:text="@string/clock_custom_format_help_styling"
android:textAppearance="?attr/textAppearanceCaption" />
<LinearLayout
android:id="@+id/clock_custom_format_help_container"
<TextView
android:id="@+id/clock_custom_format_help_examples"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
android:layout_marginTop="4dp"
android:text="@string/clock_custom_format_help_examples"
android:textAppearance="?attr/textAppearanceCaption" />
<TextView
android:id="@+id/clock_custom_format_help"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:text="@string/clock_custom_format_help_common"
android:textAppearance="?attr/textAppearanceCaption" />
<TextView
android:id="@+id/clock_custom_format_help_styling"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@string/clock_custom_format_help_styling"
android:textAppearance="?attr/textAppearanceCaption" />
<TextView
android:id="@+id/clock_custom_format_help_examples"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@string/clock_custom_format_help_examples"
android:textAppearance="?attr/textAppearanceCaption" />
<TextView
android:id="@+id/clock_custom_format_help_link"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:autoLink="web"
android:linksClickable="true"
android:text="@string/clock_custom_format_help_link"
android:textAppearance="?attr/textAppearanceCaption" />
</LinearLayout>
<TextView
android:id="@+id/clock_custom_format_help_link"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:autoLink="web"
android:linksClickable="true"
android:text="@string/clock_custom_format_help_link"
android:textAppearance="?attr/textAppearanceCaption" />
</LinearLayout>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>