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

Side by Side Diff: talk/examples/android/res/xml/preferences.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
3 <PreferenceCategory
4 android:key="@string/pref_videosettings_key"
5 android:title="@string/pref_videosettings_title">
6
7 <CheckBoxPreference
8 android:key="@string/pref_videocall_key"
9 android:title="@string/pref_videocall_title"
10 android:dialogTitle="@string/pref_videocall_dlg"
11 android:defaultValue="@string/pref_videocall_default" />
12
13 <ListPreference
14 android:key="@string/pref_resolution_key"
15 android:title="@string/pref_resolution_title"
16 android:defaultValue="@string/pref_resolution_default"
17 android:dialogTitle="@string/pref_resolution_dlg"
18 android:entries="@array/videoResolutions"
19 android:entryValues="@array/videoResolutionsValues" />
20
21 <ListPreference
22 android:key="@string/pref_fps_key"
23 android:title="@string/pref_fps_title"
24 android:defaultValue="@string/pref_fps_default"
25 android:dialogTitle="@string/pref_fps_dlg"
26 android:entries="@array/cameraFps"
27 android:entryValues="@array/cameraFps" />
28
29 <ListPreference
30 android:key="@string/pref_startvideobitrate_key"
31 android:title="@string/pref_startvideobitrate_title"
32 android:defaultValue="@string/pref_startvideobitrate_default"
33 android:dialogTitle="@string/pref_startvideobitrate_dlg"
34 android:entries="@array/startBitrate"
35 android:entryValues="@array/startBitrate" />
36
37 <EditTextPreference
38 android:key="@string/pref_startvideobitratevalue_key"
39 android:title="@string/pref_startvideobitratevalue_title"
40 android:inputType="number"
41 android:defaultValue="@string/pref_startvideobitratevalue_default"
42 android:dialogTitle="@string/pref_startvideobitratevalue_dlg" />
43
44 <ListPreference
45 android:key="@string/pref_videocodec_key"
46 android:title="@string/pref_videocodec_title"
47 android:defaultValue="@string/pref_videocodec_default"
48 android:dialogTitle="@string/pref_videocodec_dlg"
49 android:entries="@array/videoCodecs"
50 android:entryValues="@array/videoCodecs" />
51
52 <CheckBoxPreference
53 android:key="@string/pref_hwcodec_key"
54 android:title="@string/pref_hwcodec_title"
55 android:dialogTitle="@string/pref_hwcodec_dlg"
56 android:defaultValue="@string/pref_hwcodec_default" />
57 </PreferenceCategory>
58
59 <PreferenceCategory
60 android:key="@string/pref_audiosettings_key"
61 android:title="@string/pref_audiosettings_title">
62
63 <ListPreference
64 android:key="@string/pref_startaudiobitrate_key"
65 android:title="@string/pref_startaudiobitrate_title"
66 android:defaultValue="@string/pref_startaudiobitrate_default"
67 android:dialogTitle="@string/pref_startaudiobitrate_dlg"
68 android:entries="@array/startBitrate"
69 android:entryValues="@array/startBitrate" />
70
71 <EditTextPreference
72 android:key="@string/pref_startaudiobitratevalue_key"
73 android:title="@string/pref_startaudiobitratevalue_title"
74 android:inputType="number"
75 android:defaultValue="@string/pref_startaudiobitratevalue_default"
76 android:dialogTitle="@string/pref_startaudiobitratevalue_dlg" />
77
78 <ListPreference
79 android:key="@string/pref_audiocodec_key"
80 android:title="@string/pref_audiocodec_title"
81 android:defaultValue="@string/pref_audiocodec_default"
82 android:dialogTitle="@string/pref_audiocodec_dlg"
83 android:entries="@array/audioCodecs"
84 android:entryValues="@array/audioCodecs" />
85
86 <CheckBoxPreference
87 android:key="@string/pref_noaudioprocessing_key"
88 android:title="@string/pref_noaudioprocessing_title"
89 android:dialogTitle="@string/pref_noaudioprocessing_dlg"
90 android:defaultValue="@string/pref_noaudioprocessing_default" />
91 </PreferenceCategory>
92
93 <PreferenceCategory
94 android:key="@string/pref_miscsettings_key"
95 android:title="@string/pref_miscsettings_title">
96
97 <CheckBoxPreference
98 android:key="@string/pref_cpu_usage_detection_key"
99 android:title="@string/pref_cpu_usage_detection_title"
100 android:dialogTitle="@string/pref_cpu_usage_detection_dlg"
101 android:defaultValue="@string/pref_cpu_usage_detection_default" />
102
103 <EditTextPreference
104 android:key="@string/pref_room_server_url_key"
105 android:title="@string/pref_room_server_url_title"
106 android:inputType="text"
107 android:defaultValue="@string/pref_room_server_url_default"
108 android:dialogTitle="@string/pref_room_server_url_dlg" />
109
110 <CheckBoxPreference
111 android:key="@string/pref_displayhud_key"
112 android:title="@string/pref_displayhud_title"
113 android:dialogTitle="@string/pref_displayhud_dlg"
114 android:defaultValue="@string/pref_displayhud_default" />
115 </PreferenceCategory>
116
117 </PreferenceScreen>
OLDNEW
« no previous file with comments | « talk/examples/android/res/values/strings.xml ('k') | talk/examples/android/src/org/appspot/apprtc/AppRTCAudioManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698