2016-01-28 13:09:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-04-04 15:45:24 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_height="match_parent"
|
2017-04-15 16:05:50 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
tools:background="@color/brand">
|
2016-01-28 13:09:10 +00:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
|
android:id="@+id/view_pager"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
2017-04-04 15:45:24 +00:00
|
|
|
<RelativeLayout
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
<com.viewpagerindicator.IconPageIndicator
|
|
|
|
|
android:id="@+id/view_pager_indicator"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_marginBottom="16dp" />
|
2016-01-28 13:09:10 +00:00
|
|
|
|
2017-04-04 15:45:24 +00:00
|
|
|
<Button
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/skip_button"
|
|
|
|
|
android:id="@+id/skipButton"
|
|
|
|
|
android:layout_alignParentBottom="false"
|
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_marginRight="6dp"
|
|
|
|
|
android:layout_marginEnd="6dp"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:background="@color/transparent" />
|
2016-01-28 13:09:10 +00:00
|
|
|
|
2017-04-04 15:45:24 +00:00
|
|
|
<Button
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/intro_finish_button"
|
|
|
|
|
android:id="@+id/finishButton"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_marginRight="12dp"
|
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:textColor="@android:color/white"
|
2017-04-15 16:05:50 +00:00
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"/>
|
2017-04-04 15:45:24 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
</FrameLayout>
|