IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:weightSum="10"
    android:layout_height="match_parent">
    <com.zhy.android.percent.support.PercentLinearLayout
        android:layout_weight="9"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical"
        android:layout_height="0dp"
        android:layout_width="match_parent"
        app:layout_heightPercent="70%h"
        >
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <ImageView
                android:id="@+id/bgImg"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
            </ImageView>
 
            <TextView
                android:layout_gravity="bottom"
                android:layout_marginBottom="60dp"
 
                android:textSize="@dimen/text_size_20"
                android:id="@+id/logoContent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </TextView>
        </FrameLayout>
 
 
    </com.zhy.android.percent.support.PercentLinearLayout>
 
    <LinearLayout
        android:layout_weight="3"
        android:layout_width="match_parent"
        android:background="@color/colorCommonBlue"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <RelativeLayout
            android:layout_marginBottom="20dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <ImageView
                android:layout_centerHorizontal="true"
                android:id="@+id/dotImg"
                android:layout_width="54dp"
                android:layout_height="8dp">
            </ImageView>
        </RelativeLayout>
 
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <Button
                android:layout_centerHorizontal="true"
                android:id="@+id/guide_btn"
                android:textSize="@dimen/text_size_15"
                android:textColor="@color/white"
                android:background="@drawable/shape_bottom_common"
                android:text="@string/ljty"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </RelativeLayout>
 
        <TextView
            android:id="@+id/slogan1"
            android:layout_marginLeft="@dimen/margin_splash"
            android:layout_width="match_parent"
            android:textColor="@color/white"
            android:textSize="@dimen/text_size_20"
            android:layout_height="wrap_content"
            android:text="@string/slogan2">
        </TextView>
        <TextView
            android:id="@+id/slogan2"
            android:layout_marginLeft="@dimen/margin_splash"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/slogan3"
            android:textColor="@color/white"
            android:textSize="@dimen/text_size_20"
            >
        </TextView>
    </LinearLayout>
 
</LinearLayout>