35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:showIn="@layout/activity_main">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:background="?attr/colorPrimary"
|
|
android:elevation="6dp"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/toolbar"
|
|
android:background="?attr/colorPrimary"
|
|
android:elevation="6dp"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_below="@id/tab_layout"/>
|
|
|
|
</RelativeLayout> |