当我设置工具栏高度为50dp,但菜单不在工具栏中心垂直

时间:2016-03-23 05:21:49

标签: android android-toolbar

当我设置工具栏高度为50dp,但菜单不在工具栏中心垂直

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

/ **试试这个会对你有用** /

    <?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="50dp"
    android:gravity="center"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:background="@color/toolbar_bg_color">
    <TextView
        android:id="@id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"
        android:layout_gravity="right"
        android:textColor="@android:color/white"
        android:textSize="18sp"
        android:text="Back"
        android:gravity="end|center"
        />
</android.support.v7.widget.Toolbar>