工具栏:汉堡按钮在Android 6上不垂直居中

时间:2017-11-09 17:27:31

标签: android android-toolbar

这里我的活动布局:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <include layout="@layout/tool_bar" />

            <LinearLayout
                android:id="@+id/contentContainer"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="vertical">    
                <FrameLayout
                    android:id="@+id/mainActivityFrameLayout"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"/>       
            </LinearLayout>    
        </LinearLayout>            
    </FrameLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/widgetRecyclerView"
        android:layout_width="@dimen/navigation_drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/windowBackground"
        android:scrollbars="vertical" />


</android.support.v4.widget.DrawerLayout>

这里是tool_bar的布局:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolBarConstraintLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolBar"
        android:layout_width="0dp"
        android:gravity="center"
        android:layout_height="@dimen/tool_bar_height"
        android:background="@color/place_holder_color"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/toolbaTitleTextView"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:gravity="center"
        android:text="Test title center"
        app:layout_constraintBottom_toBottomOf="@+id/toolBar"
        app:layout_constraintEnd_toEndOf="@+id/toolBar"
        app:layout_constraintStart_toStartOf="@+id/toolBar"
        app:layout_constraintTop_toTopOf="@+id/toolBar" />

</android.support.constraint.ConstraintLayout>

Andorid 6.0的结果如下:

toolbar

正如您所看到的,汉堡包按钮不是垂直居中的。

这是Android 4.3的结果。一切都显示正确:

toolbar_2

为什么在 Android 4.3 上,汉堡包按钮正确显示,但 Android 6.0 不正确?

0 个答案:

没有答案