23 lines
795 B
XML
23 lines
795 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/rootView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.lzy.ninegrid.preview.HackyViewPager
|
|
android:id="@+id/viewPager2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_pager"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="20dp"
|
|
android:text="1/4"
|
|
android:textColor="#ffffff"
|
|
android:textSize="20sp" />
|
|
</RelativeLayout>
|