JLChen
2021-01-04 ed86fe7ed952bb2151aac8841134246bbde152c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:linphone="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:orientation="vertical">
 
        <org.linphone.settings.widget.SwitchSetting
            android:id="@+id/pref_friendlist_subscribe"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_friendlist_subscribe" />
 
        <org.linphone.settings.widget.SwitchSetting
            android:id="@+id/pref_contact_presence_native_contact"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_contact_sync_title"
            linphone:subtitle="@string/pref_contact_sync_subtitle"/>
 
        <org.linphone.settings.widget.SwitchSetting
            android:id="@+id/pref_contact_organization"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_contact_display_contact_organization_title" />
 
        <org.linphone.settings.widget.SwitchSetting
            android:id="@+id/pref_contact_shortcuts"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            linphone:title="@string/pref_create_contact_shortcuts" />
 
    </LinearLayout>
 
</ScrollView>