hch
2025-07-02 aaa822b7f20f04d9ae00fff5efa6c2ec7e2cd83c
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="350dp"
    android:layout_height="wrap_content"
    android:background="@drawable/yyj_sdk_dialog_bg_round"
    android:orientation="vertical">
 
 
    <TextView
        android:id="@+id/tv_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="30dp"
        android:gravity="center"
        android:layout_marginTop="30dp"
        android:text="@string/yyj_sdk_check_new_version"
        android:textColor="@color/yyj_sdk_title_txt"
        android:textSize="20sp" />
 
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="25dp"
        android:layout_marginBottom="20dp"
        android:gravity="center"
        android:orientation="horizontal"
        >
 
        <Button
            android:id="@+id/btn_cancel"
            android:layout_width="90dp"
            android:layout_height="32dp"
            android:background="@drawable/yyj_sdk_shape_bg_green_round"
            android:gravity="center"
            android:text="@string/yyj_sdk_cancel"
            android:textColor="@color/white"
            android:textSize="14sp" />
 
        <Button
            android:id="@+id/btn_ok"
            android:layout_width="90dp"
            android:layout_height="32dp"
            android:layout_marginLeft="35dp"
            android:background="@drawable/yyj_sdk_shape_bg_blue_round"
            android:gravity="center"
            android:text="@string/yyj_sdk_ok"
            android:textColor="@color/white"
            android:textSize="14sp" />
    </LinearLayout>
</LinearLayout>