当我从其他活动中恢复时,我的操作栏显示为空白

时间:2015-08-27 16:01:14

标签: android android-actionbar androiddesignsupport android-coordinatorlayout

我正在开发一个使用设计支持库编译'com.android.support:design:22.2.0'的应用程序。我的活动设计的xml代码如下。 http://prntscr.com/89in6t

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

 <android.support.v7.widget.RecyclerView
    android:id="@+id/recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <include
        android:id="@+id/toolbar1"
        layout="@layout/toolbar" />

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

这里,动作栏显示/隐藏取决于滚动。 我的问题是当操作栏被隐藏并转到其他活动并完成它时,回到相同的活动。当时动作栏显示为空白,如此

http://prntscr.com/89iw4y

怎么解决?

1 个答案:

答案 0 :(得分:1)

我认为这是设计支持库中的一个错误。

我通过在View下面添加一个空的Toolbar解决了这个问题。