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

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

Issue 1361083002: Android AppRTCDemo: Add slider for changing camera capture quality during call (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move programmatic layout changes into fragment_call.xml instead Created 5 years, 3 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"
11 android:defaultValue="@string/pref_videocall_default" /> 11 android:defaultValue="@string/pref_videocall_default" />
12 12
13 <ListPreference 13 <ListPreference
14 android:key="@string/pref_resolution_key" 14 android:key="@string/pref_resolution_key"
15 android:title="@string/pref_resolution_title" 15 android:title="@string/pref_resolution_title"
16 android:defaultValue="@string/pref_resolution_default" 16 android:defaultValue="@string/pref_resolution_default"
17 android:dialogTitle="@string/pref_resolution_dlg" 17 android:dialogTitle="@string/pref_resolution_dlg"
18 android:entries="@array/videoResolutions" 18 android:entries="@array/videoResolutions"
19 android:entryValues="@array/videoResolutionsValues" /> 19 android:entryValues="@array/videoResolutionsValues" />
20 20
21 <ListPreference 21 <ListPreference
22 android:key="@string/pref_fps_key" 22 android:key="@string/pref_fps_key"
23 android:title="@string/pref_fps_title" 23 android:title="@string/pref_fps_title"
24 android:defaultValue="@string/pref_fps_default" 24 android:defaultValue="@string/pref_fps_default"
25 android:dialogTitle="@string/pref_fps_dlg" 25 android:dialogTitle="@string/pref_fps_dlg"
26 android:entries="@array/cameraFps" 26 android:entries="@array/cameraFps"
27 android:entryValues="@array/cameraFps" /> 27 android:entryValues="@array/cameraFps" />
28 28
29 <CheckBoxPreference
30 android:key="@string/pref_capturequalityslider_key"
31 android:title="@string/pref_capturequalityslider_title"
32 android:dialogTitle="@string/pref_capturequalityslider_dlg"
33 android:defaultValue="@string/pref_capturequalityslider_default" />
34
29 <ListPreference 35 <ListPreference
30 android:key="@string/pref_startvideobitrate_key" 36 android:key="@string/pref_startvideobitrate_key"
31 android:title="@string/pref_startvideobitrate_title" 37 android:title="@string/pref_startvideobitrate_title"
32 android:defaultValue="@string/pref_startvideobitrate_default" 38 android:defaultValue="@string/pref_startvideobitrate_default"
33 android:dialogTitle="@string/pref_startvideobitrate_dlg" 39 android:dialogTitle="@string/pref_startvideobitrate_dlg"
34 android:entries="@array/startBitrate" 40 android:entries="@array/startBitrate"
35 android:entryValues="@array/startBitrate" /> 41 android:entryValues="@array/startBitrate" />
36 42
37 <EditTextPreference 43 <EditTextPreference
38 android:key="@string/pref_startvideobitratevalue_key" 44 android:key="@string/pref_startvideobitratevalue_key"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 android:dialogTitle="@string/pref_room_server_url_dlg" /> 114 android:dialogTitle="@string/pref_room_server_url_dlg" />
109 115
110 <CheckBoxPreference 116 <CheckBoxPreference
111 android:key="@string/pref_displayhud_key" 117 android:key="@string/pref_displayhud_key"
112 android:title="@string/pref_displayhud_title" 118 android:title="@string/pref_displayhud_title"
113 android:dialogTitle="@string/pref_displayhud_dlg" 119 android:dialogTitle="@string/pref_displayhud_dlg"
114 android:defaultValue="@string/pref_displayhud_default" /> 120 android:defaultValue="@string/pref_displayhud_default" />
115 </PreferenceCategory> 121 </PreferenceCategory>
116 122
117 </PreferenceScreen> 123 </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