<?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">
|
<View style="@style/view_line_h"/>
|
<android.support.design.widget.TabLayout
|
android:id="@+id/mTabLayout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@android:color/white"
|
app:tabTextColor="@color/textColor"
|
app:tabBackground="@android:color/white"
|
app:tabIndicatorColor="@color/colorAccent"
|
app:tabSelectedTextColor="@color/colorAccent"/>
|
<androidx.core.view.ViewPager
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:id="@+id/mViewPager"/>
|
</LinearLayout>
|