2019-02-03 09:59:04 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-26 19:38:53 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-04-18 14:13:59 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-26 19:38:53 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-02-03 09:59:04 +00:00
|
|
|
android:orientation="vertical">
|
2016-08-21 15:21:37 +00:00
|
|
|
|
2018-09-10 06:27:45 +00:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2019-02-03 09:59:04 +00:00
|
|
|
android:id="@+id/tab"
|
2016-08-21 15:21:37 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-01-26 19:38:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorPrimary"
|
2017-01-27 17:10:50 +00:00
|
|
|
android:elevation="4dp"
|
2019-02-03 09:59:04 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
app:tabPaddingEnd="20dp"
|
2019-04-18 14:13:59 +00:00
|
|
|
app:tabPaddingStart="20dp"
|
|
|
|
app:tabSelectedTextColor="@android:color/white"
|
|
|
|
app:tabTextColor="@android:color/secondary_text_dark"
|
|
|
|
tools:visibility="visible" />
|
2016-08-21 15:21:37 +00:00
|
|
|
|
2018-09-10 06:27:45 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2019-02-03 09:59:04 +00:00
|
|
|
android:id="@+id/container"
|
2017-01-26 19:38:53 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-02-03 09:59:04 +00:00
|
|
|
android:layout_height="match_parent" />
|
2017-01-26 19:38:53 +00:00
|
|
|
</LinearLayout>
|