| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical">
- <RelativeLayout
- android:background="@color/white"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <android.support.design.widget.TabLayout
- android:layout_centerHorizontal="true"
- android:id="@+id/torview_tablayout"
- android:layout_marginTop="24dp"
- app:tabIndicatorFullWidth="false"
- android:layout_width="200dp"
- app:tabIndicatorColor="@color/black"
- android:layout_height="wrap_content"/>
- </RelativeLayout>
- <android.support.v4.view.ViewPager
- android:id="@+id/torview_viewpager"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|