2014-10-27 18:22:15 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<ListPreference
|
|
|
|
android:key="@string/pref_resolution_key"
|
|
|
|
android:title="@string/pref_resolution_title"
|
|
|
|
android:defaultValue="@string/pref_resolution_default"
|
|
|
|
android:dialogTitle="@string/pref_resolution_dlg"
|
|
|
|
android:entries="@array/videoResolutions"
|
|
|
|
android:entryValues="@array/videoResolutionsValues" />
|
2014-12-01 21:02:13 +01:00
|
|
|
|
2014-11-03 23:18:52 +01:00
|
|
|
<ListPreference
|
|
|
|
android:key="@string/pref_fps_key"
|
|
|
|
android:title="@string/pref_fps_title"
|
|
|
|
android:defaultValue="@string/pref_fps_default"
|
|
|
|
android:dialogTitle="@string/pref_fps_dlg"
|
|
|
|
android:entries="@array/cameraFps"
|
|
|
|
android:entryValues="@array/cameraFps" />
|
2014-12-01 21:02:13 +01:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:key="@string/pref_startbitrate_key"
|
|
|
|
android:title="@string/pref_startbitrate_title"
|
|
|
|
android:defaultValue="@string/pref_startbitrate_default"
|
|
|
|
android:dialogTitle="@string/pref_startbitrate_dlg"
|
|
|
|
android:entries="@array/startBitrate"
|
|
|
|
android:entryValues="@array/startBitrate" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="@string/pref_startbitratevalue_key"
|
|
|
|
android:title="@string/pref_startbitratevalue_title"
|
|
|
|
android:inputType="number"
|
|
|
|
android:defaultValue="@string/pref_startbitratevalue_default"
|
|
|
|
android:dialogTitle="@string/pref_startbitratevalue_dlg" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/pref_hwcodec_key"
|
|
|
|
android:title="@string/pref_hwcodec_title"
|
|
|
|
android:dialogTitle="@string/pref_hwcodec_dlg"
|
|
|
|
android:defaultValue="@string/pref_hwcodec_default" />
|
|
|
|
|
2014-11-18 14:22:28 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/pref_cpu_usage_detection_key"
|
|
|
|
android:title="@string/pref_cpu_usage_detection_title"
|
|
|
|
android:dialogTitle="@string/pref_cpu_usage_detection_dlg"
|
|
|
|
android:defaultValue="@string/pref_cpu_usage_detection_default" />
|
|
|
|
|
2014-12-19 18:32:14 +01:00
|
|
|
<EditTextPreference
|
|
|
|
android:key="@string/pref_room_server_url_key"
|
|
|
|
android:title="@string/pref_room_server_url_title"
|
|
|
|
android:inputType="text"
|
|
|
|
android:defaultValue="@string/pref_room_server_url_default"
|
|
|
|
android:dialogTitle="@string/pref_room_server_url_dlg" />
|
2014-11-18 14:22:28 +01:00
|
|
|
</PreferenceScreen>
|