2021-12-09 13:36:31 +08:00
|
|
|
<?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:background="@color/gray_bg"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
|
|
<net.lucode.hackware.magicindicator.MagicIndicator
|
|
|
|
android:id="@+id/mi_tabs"
|
|
|
|
android:layout_width="match_parent"
|
2021-12-30 16:50:00 +08:00
|
|
|
android:layout_height="50dp"
|
2021-12-09 13:36:31 +08:00
|
|
|
android:background="@drawable/shp_bottom_shadow_white_no_radius" />
|
|
|
|
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
|
|
android:id="@+id/vp_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</LinearLayout>
|