我正在使用折叠式工具栏,并且尝试显示后退按钮,因为它没有显示在center_vertical
的{{1}}中。
with the right Fabric authorities我得到了
有人知道我为什么得到这个输出吗?
样式
toolbar
我使用这种样式是因为我也想在<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>
任何帮助将不胜感激
答案 0 :(得分:2)
工具栏比ActionBar支持更集中的功能集。从头到尾,工具栏可能包含以下可选元素的组合: 导航按钮。这可能是向上箭头,导航菜单切换,关闭,折叠,完成或应用程序选择的另一个标志符号。该按钮应始终用于访问工具栏容器及其标志内容中的其他导航目标,或者以其他方式保留工具栏标志的当前上下文。导航按钮在工具栏的最小高度(如果已设置)内垂直对齐。
因此,如果将minHeight属性设置为与工具栏高度相同(layout_height),则后退箭头将垂直居中。
developer.android.com中的更多说明
答案 1 :(得分:0)
从样式中删除fitsSystemWindows="true"
并将fitsSystemWindows="true"
放入所有标签后,它可以正常工作。
答案 2 :(得分:0)
将minHeight属性设置为与工具栏高度(layout_height)相同,后退箭头将垂直居中。