Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: webrtc/examples/android/media_demo/res/layout/settingsmenu.xml

Issue 1439593002: Remove webrtc/examples/android/media_demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:layout_gravity="right"
6 android:orientation="vertical">
7 <TextView android:layout_width="wrap_content"
8 android:layout_height="wrap_content"
9 android:textStyle="bold"
10 android:textSize="24dip"
11 android:text="@string/gSettings">
12 </TextView>
13 <LinearLayout android:orientation="horizontal"
14 android:layout_height="wrap_content"
15 android:layout_width="fill_parent">
16 <CheckBox android:id="@+id/cbAudio"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:text="@string/enableAudio">
20 </CheckBox>
21 <CheckBox android:id="@+id/cbLoopback"
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:text="@string/loopback">
25 </CheckBox>
26 </LinearLayout>
27 <TextView android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:text="@string/remoteIp">
30 </TextView>
31 <EditText android:id="@+id/etRemoteIp"
32 android:layout_height="wrap_content"
33 android:layout_width="fill_parent"
34 android:imeOptions="actionDone">
35 </EditText>
36 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698