29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<FrameLayout 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:id="@+id/drawerLayout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
|
android:id="@+id/content"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:foreground="@color/main_content_foreground">
|
||
|
|
|
||
|
|
<androidx.viewpager2.widget.ViewPager2
|
||
|
|
android:id="@+id/viewPager2"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
app:layout_constraintBottom_toTopOf="@id/magic_indicator"
|
||
|
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
|
||
|
|
<net.lucode.hackware.magicindicator.MagicIndicator
|
||
|
|
android:id="@+id/magic_indicator"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:paddingTop="30dp"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|
</FrameLayout>
|