为什么后退按钮没有在工具栏中显示中心?

why back button not showing center in toolbar?

我正在使用折叠工具栏,我正在尝试显示后退按钮,但它没有显示在 toolbar 中的 center_vertical 中。

我得到

有谁知道我为什么会得到这个输出?

风格

<style name="AppThemeNoActionBarNotch" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">#1A000000</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:fitsSystemWindows">true</item>
</style>

我使用这种样式是因为我想在 status bar 中也显示图像预览。

布局文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 
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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".activity.PerformarEventActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="@dimen/_200sdp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.design.widget.CollapsingToolbarLayout
    android:id="@+id/collapsing_toolbar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    app:contentScrim="@color/colorPrimary"
    app:expandedTitleMarginEnd="@dimen/_64sdp"
    app:expandedTitleMarginStart="@dimen/_48sdp"
    app:expandedTitleTextAppearance="@style/TextAppearance.AppCompat.Headline"
    app:layout_scrollFlags="scroll|exitUntilCollapsed">

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

        <ImageView
            android:id="@+id/imgperformarbg"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            android:scaleType="fitXY"
            android:background="@drawable/publiek"
            app:layout_collapseMode="parallax" />

        <View
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="bottom"
            android:background="@drawable/gradient"/>
    </RelativeLayout>

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_collapseMode="pin"
        app:titleTextColor="@color/white" />

    </android.support.v7.widget.Toolbar>

</android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main_sub" />  //RECYCLERVIEW LAYOUT


</android.support.design.widget.CoordinatorLayout>

这是我的代码

    toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    toolbar.setTitle(performer_name);
    toolbar.setNavigationIcon(R.drawable.ic_arrow_back_black_24dp);

任何帮助将不胜感激

Toolbar 支持比 ActionBar 更集中的功能集。从开始到结束,工具栏可能包含以下可选元素的组合: 导航按钮。这可能是向上箭头、导航菜单切换、关闭、折叠、完成或应用程序选择的其他字形。此按钮应始终用于访问工具栏容器内的其他导航目的地及其指示的内容,或者以其他方式离开工具栏指示的当前上下文。导航按钮在工具栏的最小高度内垂直对齐(如果已设置)。

因此,如果您将 minHeight 属性设置为与工具栏高度相同 (layout_height ),后退箭头将垂直居中。

developer.android.com

中有更多说明

从样式中删除 fitsSystemWindows="true" 并将 fitsSystemWindows="true" 放入所有标签后,它起作用了。

将 minHeight 属性设置为与您的工具栏高度相同 (layout_height ),后退箭头将垂直居中。