mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
23 lines
796 B
XML
23 lines
796 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/main_tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:background="?attr/colorPrimary"
|
|
app:tabGravity="fill"/>
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_below="@id/main_tab_layout"/>
|
|
|
|
</RelativeLayout>
|