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" /> |
85 </PreferenceCategory> | 91 </PreferenceCategory> |
86 | 92 |
87 <PreferenceCategory | 93 <PreferenceCategory |
88 android:key="@string/pref_miscsettings_key" | 94 android:key="@string/pref_miscsettings_key" |
89 android:title="@string/pref_miscsettings_title"> | 95 android:title="@string/pref_miscsettings_title"> |
90 | 96 |
91 <CheckBoxPreference | 97 <CheckBoxPreference |
92 android:key="@string/pref_cpu_usage_detection_key" | 98 android:key="@string/pref_cpu_usage_detection_key" |
93 android:title="@string/pref_cpu_usage_detection_title" | 99 android:title="@string/pref_cpu_usage_detection_title" |
94 android:dialogTitle="@string/pref_cpu_usage_detection_dlg" | 100 android:dialogTitle="@string/pref_cpu_usage_detection_dlg" |
95 android:defaultValue="@string/pref_cpu_usage_detection_default" /> | 101 android:defaultValue="@string/pref_cpu_usage_detection_default" /> |
96 | 102 |
97 <EditTextPreference | 103 <EditTextPreference |
98 android:key="@string/pref_room_server_url_key" | 104 android:key="@string/pref_room_server_url_key" |
99 android:title="@string/pref_room_server_url_title" | 105 android:title="@string/pref_room_server_url_title" |
100 android:inputType="text" | 106 android:inputType="text" |
101 android:defaultValue="@string/pref_room_server_url_default" | 107 android:defaultValue="@string/pref_room_server_url_default" |
102 android:dialogTitle="@string/pref_room_server_url_dlg" /> | 108 android:dialogTitle="@string/pref_room_server_url_dlg" /> |
103 | 109 |
104 <CheckBoxPreference | 110 <CheckBoxPreference |
105 android:key="@string/pref_displayhud_key" | 111 android:key="@string/pref_displayhud_key" |
106 android:title="@string/pref_displayhud_title" | 112 android:title="@string/pref_displayhud_title" |
107 android:dialogTitle="@string/pref_displayhud_dlg" | 113 android:dialogTitle="@string/pref_displayhud_dlg" |
108 android:defaultValue="@string/pref_displayhud_default" /> | 114 android:defaultValue="@string/pref_displayhud_default" /> |
109 </PreferenceCategory> | 115 </PreferenceCategory> |
110 | 116 |
111 </PreferenceScreen> | 117 </PreferenceScreen> |
OLD | NEW |