lzw
2024-02-19 4a31fb20e79e910f20e2dc43b3323dd51fa6e7e0
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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="@null"
    android:orientation="vertical">
 
    <LinearLayout
        android:id="@+id/basedialog_linearlayout"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@null"
        android:gravity="center"
        android:orientation="vertical">
 
        <View
            android:layout_width="match_parent"
            android:layout_height="0.2dp"
            android:background="@color/appline"/>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
 
            <TextView
                android:id="@+id/basedialog_cancelbtn"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginRight="15dp"
                android:layout_weight="1"
                android:layout_gravity="center"
                android:gravity="center"
                android:textSize="14sp"
                android:text="取消"
                android:minHeight="35dp"
                android:textColor="@color/apptakeaction"/>
 
            <View
                android:layout_width="0.2dp"
                android:layout_height="match_parent"
                android:background="@color/appline"/>
 
            <TextView
                android:id="@+id/basedialog_okbtn"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="15dp"
                android:layout_weight="1"
                android:text="确定"
                android:layout_gravity="center"
                android:gravity="center"
                android:minHeight="35dp"
                android:textSize="14sp"
                android:textColor="@color/apptakeaction"/>
 
        </LinearLayout>
 
    </LinearLayout>
 
</LinearLayout>