52 lines
1.5 KiB
XML
52 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:background="@color/white"
|
|
android:paddingTop="24dp"
|
|
>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:onClick="backClick"
|
|
android:padding="9dp"
|
|
android:src="@mipmap/icon_back"
|
|
android:tint="@color/gray1"
|
|
/>
|
|
|
|
<net.lucode.hackware.magicindicator.MagicIndicator
|
|
android:id="@+id/indicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="36dp"
|
|
android:layout_centerInParent="true"
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
</FrameLayout>
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never"
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout> |