hxb
2022-11-22 b3513b1713bb979d0a69c5a8c4ddcd038f184e6e
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
42
<?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="match_parent"
    android:background="@color/lc_demo_color_ffffff"
    android:orientation="vertical"
    android:paddingLeft="@dimen/px_30"
    android:paddingRight="@dimen/px_30">
 
    <LinearLayout
        android:layout_width="@dimen/px_340"
        android:layout_height="@dimen/px_80"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="@dimen/px_300"
        android:background="@drawable/lc_demo_border_100r_shape"
        android:gravity="center">
 
        <TextView
            android:id="@+id/tv_title_cn"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@drawable/lc_demo_bg_selector"
            android:gravity="center"
            android:text="@string/lc_demo_cn"
            android:textColor="@drawable/lc_demo_txt_color_selector"
            android:textSize="@dimen/px_28"></TextView>
 
        <TextView
            android:id="@+id/tv_overseas"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@drawable/lc_demo_bg_selector"
            android:gravity="center"
            android:text="@string/lc_demo_overseas"
            android:textColor="@drawable/lc_demo_txt_color_selector"
            android:textSize="@dimen/px_28"></TextView>
    </LinearLayout>
 
 
</LinearLayout>