<?xml version="1.0" encoding="utf-8"?>
|
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/actionbarHeight"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:id="@+id/toolbar"
|
app:contentInsetStart="0dp"
|
android:background="@color/transparent">
|
|
<android.support.constraint.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:visibility="visible">
|
<ImageView
|
android:id="@+id/img_back"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
android:padding="@dimen/dimen8"
|
android:src="@drawable/ic_menu_back"
|
android:tint="#1C1E33"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
|
<TextView
|
android:id="@+id/tv_main_title"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:textColor="#1C1E33"
|
style="@style/ToolbarTitleStyle"
|
tools:text="标题"/>
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
</android.support.v7.widget.Toolbar>
|