mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 11:42:18 +01:00
74 lines
2.5 KiB
XML
74 lines
2.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/supercars_control_button_left_up"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="0.5"
|
||
|
android:text="left" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/supercars_control_button_center_up"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="0.5"
|
||
|
android:text="forward" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/supercars_control_button_right_up"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="0.5"
|
||
|
android:text="right" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/supercars_control_button_left_down"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="0.5"
|
||
|
android:text="left" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/supercars_control_button_center_down"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="0.5"
|
||
|
android:text="back" />
|
||
|
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/supercars_control_button_right_down"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="0.5"
|
||
|
android:text="right" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|