admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#50000000"
    android:orientation="vertical">
    <!--开屏 引导页-->
    <android.support.v4.view.ViewPager
        android:id="@+id/guidepages_viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
 
    <TextView
        android:id="@+id/guidepages_next"
        android:layout_width="135dp"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/shape_login_hint"
        android:gravity="center"
        android:text="立即体验"
        android:textColor="@color/main_text_color"
        android:textSize="18sp" />
 
    <TextView
        android:id="@+id/guidepages_skip"
        android:layout_width="70dp"
        android:layout_height="30dp"
        android:layout_alignParentRight="true"
        android:layout_marginTop="25dp"
        android:layout_marginRight="15dp"
        android:background="@drawable/shape_system_message_contact_kefu"
        android:gravity="center"
        android:text="跳过"
        android:textColor="@color/text_black_1"
        android:textSize="15sp" />
</RelativeLayout>