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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 android:title="@string/pref_room_server_url_title" | 111 android:title="@string/pref_room_server_url_title" |
112 android:inputType="text" | 112 android:inputType="text" |
113 android:defaultValue="@string/pref_room_server_url_default" | 113 android:defaultValue="@string/pref_room_server_url_default" |
114 android:dialogTitle="@string/pref_room_server_url_dlg" /> | 114 android:dialogTitle="@string/pref_room_server_url_dlg" /> |
115 | 115 |
116 <CheckBoxPreference | 116 <CheckBoxPreference |
117 android:key="@string/pref_displayhud_key" | 117 android:key="@string/pref_displayhud_key" |
118 android:title="@string/pref_displayhud_title" | 118 android:title="@string/pref_displayhud_title" |
119 android:dialogTitle="@string/pref_displayhud_dlg" | 119 android:dialogTitle="@string/pref_displayhud_dlg" |
120 android:defaultValue="@string/pref_displayhud_default" /> | 120 android:defaultValue="@string/pref_displayhud_default" /> |
| 121 |
| 122 <CheckBoxPreference |
| 123 android:key="@string/pref_tracing_key" |
| 124 android:title="@string/pref_tracing_title" |
| 125 android:dialogTitle="@string/pref_tracing_dlg" |
| 126 android:defaultValue="@string/pref_tracing_default" /> |
121 </PreferenceCategory> | 127 </PreferenceCategory> |
122 | 128 |
123 </PreferenceScreen> | 129 </PreferenceScreen> |
OLD | NEW |