aboutsummaryrefslogtreecommitdiff
path: root/webrtc/examples/android/media_demo/res/layout/settingsmenu.xml
blob: 4fba57eadc8e33b6fd5de385d425e3e281baadab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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>