1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-25 11:26:47 +01:00

removed button settings

This commit is contained in:
Daniel Dakhno 2020-01-19 15:11:54 +01:00
parent 132d97ee95
commit 39d948860d

View File

@ -1,70 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<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:id="@+id/qhybrid_action_list"
android:layout_width="match_parent"
android:layout_weight="0.4"
android:layout_height="0dp"
android:id="@+id/qhybrid_action_list"/>
android:layout_weight="0.4" />
<Button
android:id="@+id/qhybrid_action_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="add action"
android:id="@+id/qhybrid_action_add"/>
android:text="add action" />
<TextView
<LinearLayout
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"/>
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>
<Space
android:layout_width="match_parent"
android:layout_height="20dp" />
<TextView
android:id="@+id/qhybrid_button_widget_top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="top widget"
android:id="@+id/qhybrid_button_widget_top"
android:textSize="20dp"/>
android:textSize="20dp" />
<TextView
android:id="@+id/qhybrid_button_widget_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="right widget"
android:id="@+id/qhybrid_button_widget_right"
android:textSize="20dp"/>
android:textSize="20dp" />
<TextView
android:id="@+id/qhybrid_button_widget_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bottom widget"
android:id="@+id/qhybrid_button_widget_bottom"
android:textSize="20dp"/>
android:textSize="20dp" />
<TextView
android:id="@+id/qhybrid_button_widget_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="left widget"
android:id="@+id/qhybrid_button_widget_left"
android:textSize="20dp"/>
android:textSize="20dp" />
<TextView
@ -73,15 +85,15 @@
android:text="custom widgets" />
<ListView
android:id="@+id/qhybrid_widget_list"
android:layout_width="match_parent"
android:layout_weight="0.4"
android:layout_height="0dp"
android:id="@+id/qhybrid_widget_list"/>
android:layout_weight="0.4" />
<Button
android:id="@+id/qhybrid_widget_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="add widget"
android:id="@+id/qhybrid_widget_add"/>
android:text="add widget" />
</LinearLayout>