kimi
2021-02-18 0ac056bb5b4c567293482286c80a1b83a467cd33
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
<?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="250dp"
    android:background="@color/white"
    android:orientation="vertical"
    android:padding="10dp">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:orientation="horizontal">
 
 
        <View
            android:layout_width="0dp"
            android:layout_height="1px"
            android:layout_marginLeft="50dp"
            android:layout_weight="1"
            android:background="@color/text_gray" />
 
        <TextView
            android:id="@+id/visibleScopeTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:text="只展示3天朋友圈" />
 
        <View
            android:layout_width="0dp"
            android:layout_height="1px"
            android:layout_marginRight="50dp"
            android:layout_weight="1"
            android:background="@color/text_gray" />
 
    </LinearLayout>
</LinearLayout>