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

Side by Side Diff: webrtc/examples/android/media_demo/res/layout/audiomenu.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:orientation="vertical">
6 <TextView android:layout_width="wrap_content"
7 android:layout_height="wrap_content"
8 android:textStyle="bold"
9 android:textSize="24dip"
10 android:text="Audio Settings">
11 </TextView>
12 <TextView android:layout_height="wrap_content"
13 android:layout_gravity="bottom"
14 android:layout_width="wrap_content"
15 android:text="@string/codecType">
16 </TextView>
17 <Spinner android:id="@+id/spAudioCodecType"
18 android:layout_height="wrap_content"
19 android:layout_width="fill_parent">
20 </Spinner>
21 <LinearLayout android:layout_height="wrap_content"
22 android:layout_width="fill_parent">
23 <TextView android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 android:text="@string/aTxPort">
26 </TextView>
27 <EditText android:id="@+id/etATxPort"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:imeOptions="actionDone"
31 android:inputType="number">
32 </EditText>
33 <TextView android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
35 android:text="@string/aRxPort">
36 </TextView>
37 <EditText android:id="@+id/etARxPort"
38 android:layout_height="wrap_content"
39 android:layout_width="wrap_content"
40 android:imeOptions="actionDone"
41 android:inputType="number">
42 </EditText>
43 </LinearLayout>
44 <LinearLayout android:layout_height="wrap_content"
45 android:layout_width="fill_parent">
46 <CheckBox android:id="@+id/cbAecm"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:text="@string/aecm">
50 </CheckBox>
51 <CheckBox android:id="@+id/cbNoiseSuppression"
52 android:layout_width="wrap_content"
53 android:layout_height="wrap_content"
54 android:text="@string/noiseSuppression">
55 </CheckBox>
56 <CheckBox android:id="@+id/cbAutoGainControl"
57 android:layout_width="wrap_content"
58 android:layout_height="wrap_content"
59 android:text="@string/autoGainControl">
60 </CheckBox>
61 </LinearLayout>
62 <LinearLayout android:layout_height="wrap_content"
63 android:layout_width="fill_parent">
64 <CheckBox android:id="@+id/cbSpeaker"
65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content"
67 android:text="@string/speaker">
68 </CheckBox>
69 <CheckBox android:id="@+id/cbDebugRecording"
70 android:layout_width="wrap_content"
71 android:layout_height="wrap_content"
72 android:text="@string/debugRecording">
73 </CheckBox>
74 <CheckBox android:id="@+id/cbAudioRTPDump"
75 android:layout_width="wrap_content"
76 android:layout_height="wrap_content"
77 android:text="@string/rtpDump">
78 </CheckBox>
79 </LinearLayout>
80 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698