mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-13 13:39:26 +01:00
79 lines
2.5 KiB
XML
79 lines
2.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="10dp">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="element id" />
|
||
|
|
||
|
<EditText
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/qhybrid_widget_element_id"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="default value" />
|
||
|
|
||
|
<EditText
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/qhybrid_widget_element_value"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="type" />
|
||
|
|
||
|
<RadioGroup
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/qhybrid_widget_element_type"
|
||
|
android:checkedButton="@id/qhybrid_widget_elements_type_text">
|
||
|
|
||
|
<RadioButton
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="text"
|
||
|
android:id="@+id/qhybrid_widget_elements_type_text"/>
|
||
|
|
||
|
<RadioButton
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="background image"
|
||
|
android:id="@+id/qhybrid_widget_elements_type_background" />
|
||
|
|
||
|
</RadioGroup>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="position" />
|
||
|
|
||
|
<RadioGroup
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/qhybrid_widget_element_position"
|
||
|
android:checkedButton="@id/qhybrid_widget_elements_position_uppper">
|
||
|
|
||
|
<RadioButton
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="upper half"
|
||
|
android:id="@+id/qhybrid_widget_elements_position_uppper"/>
|
||
|
|
||
|
<RadioButton
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="lower half"
|
||
|
android:id="@+id/qhybrid_widget_elements_position_lower" />
|
||
|
|
||
|
</RadioGroup>
|
||
|
|
||
|
</LinearLayout>
|