Files
open-keychain/OpenKeychain/src/main/res/xml/proxy_prefs.xml

35 lines
1.4 KiB
XML
Raw Normal View History

2015-06-05 05:39:12 +05:30
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
android:key="useTorProxy"
android:persistent="true"
2015-06-11 01:34:35 +05:30
android:title="@string/pref_proxy_tor_title"
2015-06-05 05:39:12 +05:30
android:summary="@string/pref_proxy_tor_summary" />
<CheckBoxPreference
android:key="useNormalProxy"
android:persistent="true"
2015-06-11 01:34:35 +05:30
android:title="@string/pref_proxy_normal_title" />
2015-06-05 05:39:12 +05:30
<EditTextPreference
android:key="proxyHost"
android:persistent="true"
android:defaultValue="127.0.0.1"
2015-06-11 01:34:35 +05:30
android:title="@string/pref_proxy_host_title"
2015-06-05 05:39:12 +05:30
android:cursorVisible="true"
android:textCursorDrawable="@null"
android:inputType="textEmailAddress"/>
<EditTextPreference
android:key="proxyPort"
android:defaultValue="8118"
android:persistent="true"
2015-06-11 01:34:35 +05:30
android:title="@string/pref_proxy_port_title"
2015-06-05 05:39:12 +05:30
android:textCursorDrawable="@null"
android:inputType="number" />
2015-06-06 15:26:22 +05:30
<ListPreference
android:entries="@array/pref_proxy_type_entries"
android:entryValues="@array/pref_proxy_type_values"
2015-08-24 00:37:38 +02:00
android:defaultValue="proxyHttp"
2015-06-06 15:26:22 +05:30
android:key="proxyType"
android:persistent="true"
2015-06-11 01:34:35 +05:30
android:title="@string/pref_proxy_type_title" />
2015-06-05 05:39:12 +05:30
</PreferenceScreen>