<?xml version="1.0" encoding="utf-8"?>
|
<android.support.constraint.ConstraintLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:background="@android:color/black">
|
|
<android.support.v4.view.ViewPager
|
android:id="@+id/view_pager"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
<TextView
|
android:id="@+id/tv_page"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
style="@style/ToolbarTitleStyle"
|
tools:text="1/7"
|
android:padding="@dimen/dimen4"
|
android:background="@color/gray"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"/>
|
|
</android.support.constraint.ConstraintLayout>
|