liuxue
2021-07-29 7e2df20ccc7cdfb528d309369460a4f3d66afdf1
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="250dp"
    android:layout_height="wrap_content"
    android:background="@drawable/yyj_sdk_dialog_bg_round">
 
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
 
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:layout_marginLeft="20dp"
            android:gravity="center"
            android:text="@string/yyj_sdk_add_subsidiary_or_not"
            android:textColor="@color/yyj_sdk_title_txt"
            android:textSize="18sp" />
 
        <TextView
            android:id="@+id/tv_cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/yyj_sdk_cancel"
            android:layout_below="@+id/tv_title"
            android:layout_toLeftOf="@+id/tv_ok"
            android:layout_marginTop="15dp"
            android:padding="10dp"
            android:layout_marginRight="10dp"
            android:textColor="@color/yyj_sdk_title_txt"
            android:textSize="16sp" />
 
        <TextView
            android:id="@+id/tv_ok"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="15dp"
            android:gravity="center"
            android:padding="10dp"
            android:layout_alignParentRight="true"
            android:text="@string/yyj_sdk_ok"
            android:layout_marginRight="10dp"
            android:layout_below="@+id/tv_title"
            android:textColor="@color/yyj_sdk_blue"
            android:layout_marginBottom="15dp"
            android:textSize="16sp" />
 
    </RelativeLayout>
 
</LinearLayout>