admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="8dp">
 
    <ScrollView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_above="@+id/game_id_buoy_hide_guide_checklayout">
        <LinearLayout
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:orientation="vertical"
            android:layout_marginStart="24dp"
            android:layout_marginEnd="24dp"
            android:layout_marginLeft="24dp"
            android:layout_marginRight="24dp">
 
        <TextView
            android:id="@+id/game_id_buoy_hide_guide_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="15sp"
            android:gravity="start"
            />
 
        <com.huawei.appmarket.component.buoycircle.impl.view.GifImageView
            android:id="@+id/game_id_buoy_hide_guide_gif"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/c_buoycircle_hide_guide"/>
        </LinearLayout>
 
    </ScrollView>
 
 
    <LinearLayout
        android:id="@+id/game_id_buoy_hide_guide_checklayout"
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="12dp"
        android:layout_marginEnd="12dp"
        android:layout_marginLeft="12dp"
        android:layout_marginRight="12dp"
        android:layout_alignParentBottom="true">
 
        <CheckBox
            android:id="@+id/game_id_buoy_hide_guide_remind"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/c_buoycircle_hide_guide_noremind"
            android:textSize="13sp"/>
 
    </LinearLayout>
</RelativeLayout>