blob: 58a8a92f59cc7612bbf55f4646d9692edf6fc28d [file] [log] [blame]
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 android:title="@string/sip_edit_title"
19 android:persistent="false">
20
21 <EditTextPreference
22 android:key="@string/username"
23 android:title="@string/username_title"
24 android:dialogTitle="@string/username_title"
Brad Ebinger5ce44e12016-07-11 10:56:43 -070025 android:summary="@string/default_preference_summary_username"
Santos Cordon7d4ddf62013-07-10 11:58:08 -070026 android:persistent="false"
27 android:singleLine="true"
28 android:inputType="textNoSuggestions"/>
29
30 <EditTextPreference
31 android:key="@string/password"
32 android:title="@string/password_title"
33 android:dialogTitle="@string/password_title"
34 android:password="true"
Brad Ebinger5ce44e12016-07-11 10:56:43 -070035 android:summary="@string/default_preference_summary_password"
Santos Cordon7d4ddf62013-07-10 11:58:08 -070036 android:persistent="false"
37 android:singleLine="true"/>
38
39 <EditTextPreference
40 android:key="@string/domain_address"
41 android:title="@string/domain_address_title"
42 android:dialogTitle="@string/domain_address_title"
Brad Ebinger5ce44e12016-07-11 10:56:43 -070043 android:summary="@string/default_preference_summary_domain_address"
Santos Cordon7d4ddf62013-07-10 11:58:08 -070044 android:persistent="false"
45 android:singleLine="true"
46 android:inputType="textNoSuggestions"/>
47
Santos Cordon7d4ddf62013-07-10 11:58:08 -070048 <PreferenceScreen
49 android:key="@string/advanced_settings"
50 android:title="@string/advanced_settings"
51 android:summary="@string/advanced_settings_show"
52 android:persistent="false"/>
53</PreferenceScreen>