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

87 lines
2.8 KiB
XML
Raw Normal View History

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