31 lines
1007 B
XML
31 lines
1007 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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:id="@+id/custom_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:layout_margin="0dp"
|
|
android:padding="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_toolbar_back"
|
|
android:layout_width="22dp"
|
|
android:layout_height="22dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="15dp"
|
|
android:src="@drawable/ic_left_arrow" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_toolbar_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:textColor="@color/black"
|
|
android:textSize="16sp" />
|
|
|
|
|
|
</RelativeLayout>
|