mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
80 lines
2.7 KiB
XML
80 lines
2.7 KiB
XML
|
<?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"
|
||
|
android:text="Type:" />
|
||
|
|
||
|
<RadioGroup
|
||
|
android:id="@+id/watchface_widget_type_selector"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
<RadioButton
|
||
|
android:id="@+id/watchface_widget_type_date"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Date"/>
|
||
|
<RadioButton
|
||
|
android:id="@+id/watchface_widget_type_weather"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Weather"/>
|
||
|
</RadioGroup>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="X coordinate (max 240):" />
|
||
|
|
||
|
<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"
|
||
|
android:text="Y coordinate (max 240):" />
|
||
|
|
||
|
<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"
|
||
|
android:text="Position presets:" />
|
||
|
|
||
|
<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"
|
||
|
android:text="Top"/>
|
||
|
<Button
|
||
|
android:id="@+id/watchface_widget_preset_bottom"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Bottom"/>
|
||
|
<Button
|
||
|
android:id="@+id/watchface_widget_preset_left"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Left"/>
|
||
|
<Button
|
||
|
android:id="@+id/watchface_widget_preset_right"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Right"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|