2018-01-30 23:19:07 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/containerLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-04-01 08:18:32 +07:00
|
|
|
android:background="#555"
|
2018-01-30 23:19:07 +03:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:orientation="vertical">
|
2018-04-03 01:43:17 +07:00
|
|
|
<LinearLayout android:id="@+id/container"
|
2018-04-01 08:18:32 +07:00
|
|
|
android:layout_width="match_parent"
|
2018-04-03 01:43:17 +07:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingBottom="60dp"/>
|
|
|
|
|
2018-01-30 23:19:07 +03:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/buttonContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:layout_gravity="bottom"
|
2018-04-01 08:18:32 +07:00
|
|
|
android:background="#444"
|
2018-01-30 23:19:07 +03:00
|
|
|
android:clipToPadding="false">
|
|
|
|
<!-- android:elevation="24dp" -->
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/prev"
|
|
|
|
style="@android:style/Widget.DeviceDefault.Button.Borderless"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
2018-02-04 17:10:56 +03:00
|
|
|
android:text="@string/prev"
|
2018-01-30 23:19:07 +03:00
|
|
|
android:textColor="#FFF" />
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/next"
|
|
|
|
style="@android:style/Widget.DeviceDefault.Button.Borderless"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
2018-02-04 17:00:10 +03:00
|
|
|
android:text="@string/finish"
|
2018-01-30 23:19:07 +03:00
|
|
|
android:textColor="#FFF" />
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/indicatorLayout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|