wxr
2024-07-16 548fb8aa23fe31401ba3dae823d31f9a73cc101f
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
<?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:background="@drawable/lp_dialog_background"
    android:orientation="vertical">
 
    <TextView
        android:id="@+id/lpsdk_dialog_title_tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:gravity="center"
        android:text="提示"
        android:textColor="#4484F4"
        android:textSize="16sp" />
 
    <TextView
        android:id="@+id/lpsdk_dialog_content_tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:gravity="center"
        android:text="内容"
        android:textColor="@color/lpsdk_textColor"
        android:textSize="12sp" />
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="44dp"
        android:layout_marginTop="10dp"
        android:orientation="horizontal">
 
        <TextView
            android:id="@+id/lpsdk_dialog_cancel_tv"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:text="@string/lp_cancel"
            android:gravity="center"
            android:textSize="16sp"
            android:background="@drawable/lp_dialog_cancel_background"
            android:textColor="@color/lpsdk_textColor"
            android:layout_weight="1" />
 
        <TextView
            android:id="@+id/lpsdk_dialog_confirm_tv"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:gravity="center"
            android:textColor="#FFFFFF"
            android:text="@string/lp_confirm"
            android:background="@drawable/lp_dialog_confirm_background"
            android:layout_weight="1" />
    </LinearLayout>
 
</LinearLayout>