2021-07-11 22:14:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_type" />
|
2021-07-11 22:14:45 +02:00
|
|
|
|
2021-07-14 22:40:02 +02:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/watchface_widget_type_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2021-07-16 15:11:45 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/watchface_dialog_widget_color" />
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/watchface_widget_color_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2021-07-11 22:14:45 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_x_coordinate" />
|
2021-07-11 22:14:45 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/watchface_widget_pos_x"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="number"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_y_coordinate" />
|
2021-07-11 22:14:45 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/watchface_widget_pos_y"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="number"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_presets" />
|
2021-07-11 22:14:45 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<Button
|
|
|
|
android:id="@+id/watchface_widget_preset_top"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_preset_top"/>
|
2021-07-11 22:14:45 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/watchface_widget_preset_bottom"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_preset_bottom"/>
|
2021-07-11 22:14:45 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/watchface_widget_preset_left"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_preset_left"/>
|
2021-07-11 22:14:45 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/watchface_widget_preset_right"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-16 12:24:33 +02:00
|
|
|
android:text="@string/watchface_dialog_widget_preset_right"/>
|
2021-07-11 22:14:45 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2021-08-08 22:47:25 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/watchface_widget_timezone_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-11-17 13:42:14 +01:00
|
|
|
android:text="@string/watchface_dialog_widget_timezone" />
|
2021-08-08 22:47:25 +02:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/watchface_widget_timezone_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2021-11-17 13:42:14 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/watchface_widget_update_timeout_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/watchface_dialog_widget_update_timeout" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/watchface_widget_update_timeout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="number"/>
|
2021-11-22 21:28:47 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/watchface_dialog_widget_timeout_hide_text" />
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/watchface_widget_timeout_hide_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/watchface_dialog_widget_timeout_show_circle" />
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/watchface_widget_timeout_show_circle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2021-11-17 13:42:14 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2021-08-08 22:47:25 +02:00
|
|
|
</LinearLayout>
|