<?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="wrap_content"
|
android:orientation="vertical">
|
|
|
<androidx.appcompat.widget.Toolbar
|
android:id="@+id/toolbar_view_b"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/toolbar_height"
|
android:background="@color/app_background">
|
|
|
<RelativeLayout
|
android:id="@+id/rel_toolbar"
|
android:layout_width="match_parent"
|
android:layout_height="50dp">
|
<RelativeLayout
|
android:id="@+id/ll_top_b_left"
|
android:layout_width="60dp"
|
android:layout_height="match_parent"
|
android:layout_alignParentStart="true"
|
android:layout_centerVertical="true"
|
android:visibility="gone"
|
android:background="@drawable/hdl_btn_click_effect"
|
>
|
|
<ImageView
|
android:id="@+id/iv_menu"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_marginStart="10dp"
|
android:layout_alignParentStart="true"
|
android:layout_centerVertical="true"
|
android:src="@mipmap/ic_top_back"
|
/>
|
</RelativeLayout>
|
|
<TextView
|
android:id="@+id/tv_top_b_header_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:text=""
|
android:gravity="center"
|
android:layout_marginRight="60dp"
|
android:layout_marginLeft="60dp"
|
android:textColor="@color/white"
|
android:textSize="@dimen/textSize_title"
|
|
android:textStyle="bold"
|
/>
|
|
<!--默认隐藏-->
|
<RelativeLayout
|
android:id="@+id/ll_top_b_right"
|
android:layout_width="60dp"
|
android:layout_height="match_parent"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:background="@drawable/hdl_btn_click_effect"
|
android:visibility="gone"
|
>
|
|
<ImageView
|
android:id="@+id/ll_top_b_select"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="10dp"
|
/>
|
</RelativeLayout>
|
|
|
</RelativeLayout>
|
|
</androidx.appcompat.widget.Toolbar>
|
|
</LinearLayout>
|