aboutsummaryrefslogtreecommitdiff
path: root/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml
diff options
context:
space:
mode:
Diffstat (limited to 'webrtc/examples/android/media_demo/res/layout/settingsmenu.xml')
-rw-r--r--webrtc/examples/android/media_demo/res/layout/settingsmenu.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml b/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml
new file mode 100644
index 0000000000..4fba57eadc
--- /dev/null
+++ b/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:layout_gravity="right"
+ android:orientation="vertical">
+ <TextView android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textStyle="bold"
+ android:textSize="24dip"
+ android:text="@string/gSettings">
+ </TextView>
+ <LinearLayout android:orientation="horizontal"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent">
+ <CheckBox android:id="@+id/cbAudio"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/enableAudio">
+ </CheckBox>
+ <CheckBox android:id="@+id/cbLoopback"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/loopback">
+ </CheckBox>
+ </LinearLayout>
+ <TextView android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/remoteIp">
+ </TextView>
+ <EditText android:id="@+id/etRemoteIp"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:imeOptions="actionDone">
+ </EditText>
+</LinearLayout> \ No newline at end of file