2014-10-27 17:22:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="@string/pref_url_key"
|
|
|
|
android:title="@string/pref_url_title"
|
2014-11-06 09:22:08 +00:00
|
|
|
android:summary="@string/pref_url_summary"
|
2014-10-27 17:22:15 +00:00
|
|
|
android:defaultValue="@string/pref_url_default"
|
|
|
|
android:inputType="textWebEmailAddress"
|
|
|
|
android:dialogTitle="@string/pref_url_dlg" />
|
|
|
|
<ListPreference
|
|
|
|
android:key="@string/pref_resolution_key"
|
|
|
|
android:title="@string/pref_resolution_title"
|
2014-11-06 09:22:08 +00:00
|
|
|
android:summary="@string/pref_resolution_summary"
|
2014-10-27 17:22:15 +00:00
|
|
|
android:defaultValue="@string/pref_resolution_default"
|
|
|
|
android:dialogTitle="@string/pref_resolution_dlg"
|
|
|
|
android:entries="@array/videoResolutions"
|
|
|
|
android:entryValues="@array/videoResolutionsValues" />
|
2014-11-03 22:18:52 +00:00
|
|
|
<ListPreference
|
|
|
|
android:key="@string/pref_fps_key"
|
|
|
|
android:title="@string/pref_fps_title"
|
2014-11-06 09:22:08 +00:00
|
|
|
android:summary="@string/pref_fps_summary"
|
2014-11-03 22:18:52 +00:00
|
|
|
android:defaultValue="@string/pref_fps_default"
|
|
|
|
android:dialogTitle="@string/pref_fps_dlg"
|
|
|
|
android:entries="@array/cameraFps"
|
|
|
|
android:entryValues="@array/cameraFps" />
|
2014-11-06 09:22:08 +00:00
|
|
|
</PreferenceScreen>
|