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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:gravity="center_vertical|left">
 
    <RelativeLayout
        android:id="@+id/setting_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:paddingTop="15dp"
        android:paddingBottom="15dp">
 
        <org.linphone.views.MarqueeTextView
            android:id="@+id/setting_title"
            android:singleLine="true"
            style="@style/settings_item_font"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
 
        <org.linphone.views.MarqueeTextView
            android:id="@+id/setting_subtitle"
            android:singleLine="true"
            android:layout_below="@id/setting_title"
            style="@style/settings_item_subtitle_font"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
 
    </RelativeLayout>
 
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="?attr/dividerColor" />
 
</LinearLayout>