Teraplex/app/src/main/res/layout/addbuttonsdialog.xml
2021-06-06 18:08:49 +02:00

50 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<EditText
android:id="@+id/button_command2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button_command"
android:layout_alignParentLeft="true"
android:hint="COMMAND 1"
android:inputType="textPassword" />
<EditText
android:id="@+id/button_command3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button_command2"
android:layout_alignParentLeft="true"
android:hint="BUTTON 2"
android:inputType="textPassword" />
<EditText
android:id="@+id/button_command4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button_command3"
android:layout_alignParentLeft="true"
android:hint="COMMAND 2"
android:inputType="textPassword" />
<EditText
android:id="@+id/button_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="NAME" />
<EditText
android:id="@+id/button_command"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/button_name"
android:layout_alignParentLeft="true"
android:hint="BUTTON 1 "
android:inputType="textPassword" />
</RelativeLayout>