2022-07-18 15:31:45 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/titleView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="@color/textColor"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<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/textColor" />
|
|
|
|
|
2022-07-21 11:24:15 +08:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/img_more"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:padding="9dp"
|
|
|
|
android:src="@mipmap/btn_more_black"
|
|
|
|
android:tint="@color/textColor"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
</RelativeLayout>
|
|
|
|
</FrameLayout>
|