2016-10-25 17:04:32 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-10-26 16:23:14 +02:00
|
|
|
<com.github.dfa.diaspora_android.ui.theme.ThemedPreferenceCategory
|
2016-10-25 17:04:32 +02:00
|
|
|
android:key="@string/pref_key__title__proxy"
|
|
|
|
android:title="@string/HTTP">
|
2016-10-26 16:23:14 +02:00
|
|
|
<com.github.dfa.diaspora_android.ui.theme.ThemedCheckBoxPreference
|
2016-10-25 17:04:32 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_key__http_proxy_enabled"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:summary="@string/proxy_dandelion_traffic__appspecific"
|
|
|
|
android:title="@string/enable_proxy"/>
|
2016-10-25 17:04:32 +02:00
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:dependency="@string/pref_key__http_proxy_enabled"
|
|
|
|
android:inputType="textNoSuggestions"
|
|
|
|
android:key="@string/pref_key__http_proxy_host"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:title="@string/host"/>
|
2016-10-25 17:04:32 +02:00
|
|
|
<EditTextPreference
|
|
|
|
android:dependency="@string/pref_key__http_proxy_enabled"
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="@string/pref_key__http_proxy_port"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:title="@string/port"/>
|
2016-10-25 17:04:32 +02:00
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/tor_onion"
|
|
|
|
android:dependency="@string/pref_key__http_proxy_enabled"
|
|
|
|
android:key="@string/pref_key__http_proxy_load_tor_preset"
|
2018-09-04 17:02:34 +02:00
|
|
|
android:summary="@string/load_proxy_settins_for_tor"
|
|
|
|
android:title="@string/load_tor_preset"/>
|
2016-10-25 17:04:32 +02:00
|
|
|
|
2016-10-26 16:23:14 +02:00
|
|
|
</com.github.dfa.diaspora_android.ui.theme.ThemedPreferenceCategory>
|
2016-10-25 17:04:32 +02:00
|
|
|
</PreferenceScreen>
|