27 lines
971 B
XML
27 lines
971 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/bg_white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<TextView
|
|
android:id="@+id/tv_guide_page"
|
|
android:text="1/9"
|
|
style="@style/tv_guide_page"/>
|
|
<TextView
|
|
android:id="@+id/tv_skip"
|
|
android:text="@string/skip_all"
|
|
style="@style/guide_tv_skip"/>
|
|
<ImageView
|
|
android:id="@+id/im_shape_left"
|
|
android:src="@drawable/shape_guide_left"
|
|
style="@style/guide_im_shape_left"/>
|
|
<ImageView
|
|
android:id="@+id/im_shape_right"
|
|
android:src="@drawable/shape_guide_right"
|
|
style="@style/guide_im_shape_right"/>
|
|
</RelativeLayout>
|