summaryrefslogtreecommitdiff
path: root/android/sdremote/res/layout/testlayout.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/sdremote/res/layout/testlayout.xml')
-rw-r--r--android/sdremote/res/layout/testlayout.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/android/sdremote/res/layout/testlayout.xml b/android/sdremote/res/layout/testlayout.xml
new file mode 100644
index 000000000000..2e32325aabbb
--- /dev/null
+++ b/android/sdremote/res/layout/testlayout.xml
@@ -0,0 +1,28 @@
+<?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" >
+
+ <TextView
+ android:id="@+id/label_curSlide"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:text="Slide: XXX" />
+
+ <Button
+ android:id="@+id/button_next"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:text="Next" />
+
+ <Button
+ android:id="@+id/button_previous"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:text="Previous" />
+
+</LinearLayout> \ No newline at end of file