summaryrefslogtreecommitdiff
path: root/vdrmanager/app/src/main/res/layout/edit_remote_key.xml
diff options
context:
space:
mode:
Diffstat (limited to 'vdrmanager/app/src/main/res/layout/edit_remote_key.xml')
-rw-r--r--vdrmanager/app/src/main/res/layout/edit_remote_key.xml49
1 files changed, 49 insertions, 0 deletions
diff --git a/vdrmanager/app/src/main/res/layout/edit_remote_key.xml b/vdrmanager/app/src/main/res/layout/edit_remote_key.xml
new file mode 100644
index 0000000..06d91ec
--- /dev/null
+++ b/vdrmanager/app/src/main/res/layout/edit_remote_key.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical" android:layout_width="match_parent"
+ android:padding="5dp"
+ android:layout_height="match_parent">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/label"
+ android:id="@+id/hitkLabel" />
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/hitk" />
+
+ <TextView
+ android:layout_marginTop="10dp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/hitkcommand"/>
+
+ <Spinner
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/hitkSpinner" />
+
+ <LinearLayout android:visibility="gone"
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <Button
+ android:layout_weight="1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@android:string/cancel"
+ android:id="@+id/button7"
+ android:layout_gravity="right" />
+
+ <Button
+ android:layout_weight="1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@android:string/ok"
+ android:id="@+id/button6" />
+ </LinearLayout>
+</LinearLayout> \ No newline at end of file