1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-17 02:44:04 +02:00
Gadgetbridge/app/src/main/res/layout/activity_qhybrid_hr_settings.xml

109 lines
3.4 KiB
XML
Raw Normal View History

2019-12-31 03:14:20 +01:00
<?xml version="1.0" encoding="utf-8"?>
2020-01-19 15:11:54 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-12-31 03:14:20 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1">
2020-01-19 15:11:54 +01:00
<LinearLayout
2019-12-31 03:14:20 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-01-19 15:11:54 +01:00
android:orientation="vertical"
android:visibility="gone">
<TextView
android:id="@+id/qhybrid_button_top_single_press"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="top button single press"
android:textSize="20dp" />
<TextView
android:id="@+id/qhybrid_button_middle_single_press"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="middle button single press"
android:textSize="20dp" />
<TextView
android:id="@+id/qhybrid_button_bottom_single_press"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bottom button single press"
android:textSize="20dp" />
</LinearLayout>
2019-12-31 03:14:20 +01:00
2020-01-19 04:01:57 +01:00
<Space
android:layout_width="match_parent"
android:layout_height="20dp" />
<TextView
2020-01-19 15:11:54 +01:00
android:id="@+id/qhybrid_button_widget_top"
2020-01-19 04:01:57 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="top widget"
2020-01-19 15:11:54 +01:00
android:textSize="20dp" />
2020-01-19 04:01:57 +01:00
<TextView
2020-01-19 15:11:54 +01:00
android:id="@+id/qhybrid_button_widget_right"
2020-01-19 04:01:57 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="right widget"
2020-01-19 15:11:54 +01:00
android:textSize="20dp" />
2020-01-19 04:01:57 +01:00
<TextView
2020-01-19 15:11:54 +01:00
android:id="@+id/qhybrid_button_widget_bottom"
2020-01-19 04:01:57 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bottom widget"
2020-01-19 15:11:54 +01:00
android:textSize="20dp" />
2020-01-19 04:01:57 +01:00
<TextView
2020-01-19 15:11:54 +01:00
android:id="@+id/qhybrid_button_widget_left"
2020-01-19 04:01:57 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="left widget"
2020-01-19 15:11:54 +01:00
android:textSize="20dp" />
2020-01-19 04:01:57 +01:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="custom widgets" />
<ListView
2020-01-19 15:11:54 +01:00
android:id="@+id/qhybrid_widget_list"
2020-01-19 04:01:57 +01:00
android:layout_width="match_parent"
android:layout_height="0dp"
2020-01-19 15:11:54 +01:00
android:layout_weight="0.4" />
2020-01-19 04:01:57 +01:00
<Button
2020-01-19 15:11:54 +01:00
android:id="@+id/qhybrid_widget_add"
2020-01-19 04:01:57 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-01-19 15:11:54 +01:00
android:text="add widget" />
2020-01-19 04:01:57 +01:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="2"
android:orientation="horizontal">
<Button
android:id="@+id/qhybrid_unset_background"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="delete background"
android:layout_weight="1"/>
<Button
android:id="@+id/qhybrid_set_background"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="set background"
android:layout_weight="1" />
</LinearLayout>
2019-12-31 03:14:20 +01:00
</LinearLayout>