27 lines
930 B
XML
27 lines
930 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingTop="28dp"
|
|
tools:context=".ui.MainActivity">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tab"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="84dp"
|
|
android:paddingStart="30dp"
|
|
android:paddingEnd="30dp"
|
|
android:background="@mipmap/tab_bg"
|
|
app:tabIndicatorHeight="0dp"
|
|
app:tabMode="scrollable" />
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/vp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
</LinearLayout> |