OLD | NEW |
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 android:defaultValue="@string/pref_startaudiobitratevalue_default" | 75 android:defaultValue="@string/pref_startaudiobitratevalue_default" |
76 android:dialogTitle="@string/pref_startaudiobitratevalue_dlg" /> | 76 android:dialogTitle="@string/pref_startaudiobitratevalue_dlg" /> |
77 | 77 |
78 <ListPreference | 78 <ListPreference |
79 android:key="@string/pref_audiocodec_key" | 79 android:key="@string/pref_audiocodec_key" |
80 android:title="@string/pref_audiocodec_title" | 80 android:title="@string/pref_audiocodec_title" |
81 android:defaultValue="@string/pref_audiocodec_default" | 81 android:defaultValue="@string/pref_audiocodec_default" |
82 android:dialogTitle="@string/pref_audiocodec_dlg" | 82 android:dialogTitle="@string/pref_audiocodec_dlg" |
83 android:entries="@array/audioCodecs" | 83 android:entries="@array/audioCodecs" |
84 android:entryValues="@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> | 85 </PreferenceCategory> |
92 | 86 |
93 <PreferenceCategory | 87 <PreferenceCategory |
94 android:key="@string/pref_miscsettings_key" | 88 android:key="@string/pref_miscsettings_key" |
95 android:title="@string/pref_miscsettings_title"> | 89 android:title="@string/pref_miscsettings_title"> |
96 | 90 |
97 <CheckBoxPreference | 91 <CheckBoxPreference |
98 android:key="@string/pref_cpu_usage_detection_key" | 92 android:key="@string/pref_cpu_usage_detection_key" |
99 android:title="@string/pref_cpu_usage_detection_title" | 93 android:title="@string/pref_cpu_usage_detection_title" |
100 android:dialogTitle="@string/pref_cpu_usage_detection_dlg" | 94 android:dialogTitle="@string/pref_cpu_usage_detection_dlg" |
101 android:defaultValue="@string/pref_cpu_usage_detection_default" /> | 95 android:defaultValue="@string/pref_cpu_usage_detection_default" /> |
102 | 96 |
103 <EditTextPreference | 97 <EditTextPreference |
104 android:key="@string/pref_room_server_url_key" | 98 android:key="@string/pref_room_server_url_key" |
105 android:title="@string/pref_room_server_url_title" | 99 android:title="@string/pref_room_server_url_title" |
106 android:inputType="text" | 100 android:inputType="text" |
107 android:defaultValue="@string/pref_room_server_url_default" | 101 android:defaultValue="@string/pref_room_server_url_default" |
108 android:dialogTitle="@string/pref_room_server_url_dlg" /> | 102 android:dialogTitle="@string/pref_room_server_url_dlg" /> |
109 | 103 |
110 <CheckBoxPreference | 104 <CheckBoxPreference |
111 android:key="@string/pref_displayhud_key" | 105 android:key="@string/pref_displayhud_key" |
112 android:title="@string/pref_displayhud_title" | 106 android:title="@string/pref_displayhud_title" |
113 android:dialogTitle="@string/pref_displayhud_dlg" | 107 android:dialogTitle="@string/pref_displayhud_dlg" |
114 android:defaultValue="@string/pref_displayhud_default" /> | 108 android:defaultValue="@string/pref_displayhud_default" /> |
115 </PreferenceCategory> | 109 </PreferenceCategory> |
116 | 110 |
117 </PreferenceScreen> | 111 </PreferenceScreen> |
OLD | NEW |