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

Side by Side Diff: webrtc/examples/androidapp/res/xml/preferences.xml

Issue 2193753002: Add an option to enable level control to Android AppRTC Demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 months 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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
3 <PreferenceCategory 3 <PreferenceCategory
4 android:key="@string/pref_videosettings_key" 4 android:key="@string/pref_videosettings_key"
5 android:title="@string/pref_videosettings_title"> 5 android:title="@string/pref_videosettings_title">
6 6
7 <CheckBoxPreference 7 <CheckBoxPreference
8 android:key="@string/pref_videocall_key" 8 android:key="@string/pref_videocall_key"
9 android:title="@string/pref_videocall_title" 9 android:title="@string/pref_videocall_title"
10 android:dialogTitle="@string/pref_videocall_dlg" 10 android:dialogTitle="@string/pref_videocall_dlg"
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 android:key="@string/pref_disable_built_in_agc_key" 128 android:key="@string/pref_disable_built_in_agc_key"
129 android:title="@string/pref_disable_built_in_agc_title" 129 android:title="@string/pref_disable_built_in_agc_title"
130 android:dialogTitle="@string/pref_disable_built_in_agc_dlg" 130 android:dialogTitle="@string/pref_disable_built_in_agc_dlg"
131 android:defaultValue="@string/pref_disable_built_in_agc_default" /> 131 android:defaultValue="@string/pref_disable_built_in_agc_default" />
132 132
133 <CheckBoxPreference 133 <CheckBoxPreference
134 android:key="@string/pref_disable_built_in_ns_key" 134 android:key="@string/pref_disable_built_in_ns_key"
135 android:title="@string/pref_disable_built_in_ns_title" 135 android:title="@string/pref_disable_built_in_ns_title"
136 android:dialogTitle="@string/pref_disable_built_in_ns_dlg" 136 android:dialogTitle="@string/pref_disable_built_in_ns_dlg"
137 android:defaultValue="@string/pref_disable_built_in_ns_default" /> 137 android:defaultValue="@string/pref_disable_built_in_ns_default" />
138
139 <CheckBoxPreference
140 android:key="@string/pref_enable_level_control_key"
141 android:title="@string/pref_enable_level_control_title"
142 android:defaultValue="@string/pref_enable_level_control_default" />
138 </PreferenceCategory> 143 </PreferenceCategory>
139 144
140 <PreferenceCategory 145 <PreferenceCategory
141 android:key="@string/pref_miscsettings_key" 146 android:key="@string/pref_miscsettings_key"
142 android:title="@string/pref_miscsettings_title"> 147 android:title="@string/pref_miscsettings_title">
143 148
144 <EditTextPreference 149 <EditTextPreference
145 android:key="@string/pref_room_server_url_key" 150 android:key="@string/pref_room_server_url_key"
146 android:title="@string/pref_room_server_url_title" 151 android:title="@string/pref_room_server_url_title"
147 android:inputType="text" 152 android:inputType="text"
148 android:defaultValue="@string/pref_room_server_url_default" 153 android:defaultValue="@string/pref_room_server_url_default"
149 android:dialogTitle="@string/pref_room_server_url_dlg" /> 154 android:dialogTitle="@string/pref_room_server_url_dlg" />
150 155
151 <CheckBoxPreference 156 <CheckBoxPreference
152 android:key="@string/pref_displayhud_key" 157 android:key="@string/pref_displayhud_key"
153 android:title="@string/pref_displayhud_title" 158 android:title="@string/pref_displayhud_title"
154 android:dialogTitle="@string/pref_displayhud_dlg" 159 android:dialogTitle="@string/pref_displayhud_dlg"
155 android:defaultValue="@string/pref_displayhud_default" /> 160 android:defaultValue="@string/pref_displayhud_default" />
156 161
157 <CheckBoxPreference 162 <CheckBoxPreference
158 android:key="@string/pref_tracing_key" 163 android:key="@string/pref_tracing_key"
159 android:title="@string/pref_tracing_title" 164 android:title="@string/pref_tracing_title"
160 android:dialogTitle="@string/pref_tracing_dlg" 165 android:dialogTitle="@string/pref_tracing_dlg"
161 android:defaultValue="@string/pref_tracing_default" /> 166 android:defaultValue="@string/pref_tracing_default" />
162 </PreferenceCategory> 167 </PreferenceCategory>
163 168
164 </PreferenceScreen> 169 </PreferenceScreen>
OLDNEW
« no previous file with comments | « webrtc/examples/androidapp/res/values/strings.xml ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698