12345678910111213141516171819202122 |
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:gravity="center"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.v4.view.ViewPager
- android:id="@+id/view_pager"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- </android.support.v4.view.ViewPager>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="8dp"
- android:layout_gravity="bottom|left"
- android:background="@color/bg_light_grey"
- android:textColor="@color/black_87pc"
- android:textSize="12sp"
- android:id="@+id/page_number"/>
- </FrameLayout>
|