mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
51 lines
No EOL
1.6 KiB
XML
51 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/pref_sipaccount">
|
|
|
|
<EditTextPreference
|
|
android:title="@string/pref_username"
|
|
android:dialogMessage="@string/pref_help_username"
|
|
android:persistent="true"/>
|
|
|
|
<EditTextPreference
|
|
android:title="@string/pref_passwd"
|
|
android:persistent="true"/>
|
|
|
|
<EditTextPreference
|
|
android:title="@string/pref_domain"
|
|
android:dialogMessage="@string/pref_help_domain"
|
|
android:persistent="true"/>
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/pref_advanced">
|
|
|
|
<EditTextPreference
|
|
android:title="@string/pref_proxy"
|
|
android:summary="@string/pref_help_proxy"
|
|
android:persistent="true"/>
|
|
|
|
<CheckBoxPreference
|
|
android:title="@string/pref_enable_outbound_proxy"
|
|
android:dialogMessage="@string/pref_help_outbound_proxy"
|
|
android:summary="@string/pref_help_outbound_proxy"
|
|
android:persistent="true"/>
|
|
|
|
<CheckBoxPreference
|
|
android:title="@string/pref_disable_account"
|
|
android:persistent="true"/>
|
|
|
|
<CheckBoxPreference
|
|
android:title="@string/pref_default_account"
|
|
android:persistent="true"/>
|
|
|
|
<Preference
|
|
android:title="@string/pref_delete_account"
|
|
android:persistent="true"/>
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen> |