2020-08-14 15:12:29 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dimen_50"
|
2020-08-25 17:48:41 +08:00
|
|
|
>
|
2020-08-14 15:12:29 +08:00
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_back"
|
|
|
|
|
android:layout_width="@dimen/dimen_15"
|
|
|
|
|
android:layout_height="@dimen/dimen_15"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_marginLeft="@dimen/dimen_15"
|
|
|
|
|
android:textSize="@dimen/dimen_13"
|
|
|
|
|
android:src="@mipmap/back"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:textColor="@color/colorWhite"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_title"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="@dimen/dimen_13"
|
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
|
android:textColor="@color/colorWhite"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_search"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="@dimen/dimen_13"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
|
android:layout_marginRight="@dimen/dimen_15"
|
|
|
|
|
android:textColor="@color/colorWhite"
|
|
|
|
|
android:src="@mipmap/mine_search"
|
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|