ToolbarLayout再次进入时变为白色

时间:2015-06-05 12:17:21

标签: android android-support-library androiddesignsupport

我已经实现了一个带有recylerview的工具栏,就像在the blog post中一样。但我还添加了一个导航抽屉。如果我执行以下步骤,则在滚动后再次输入时,工具栏会变为白色

  1. 向下滚动RecyclerView,以便Toolbar隐藏
  2. 通过向左滑动打开NavigationDrawer
  3. 关闭NavigationDrawer关闭右侧
  4. 滚动RecyclerView
  5. Toolbar出现在此回合白色
  6. 之后

    我知道工具栏仍然存在,因为我仍然可以点击其中充气的菜单项。当我点击工具栏中的汉堡图标时,它会再次变为原始颜色。

    这是关于它如何结果的图像 Image

    以下是我在代码中实现它的方式

    toolbar.xml

     <?xml version="1.0" encoding="utf-8"?>
        <android.support.v7.widget.Toolbar
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/my_awesome_toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:background="?attr/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
    

    activity_main.xml中

    <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/drawer_layout"
        >
    
        <android.support.design.widget.CoordinatorLayout
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            >
    
            <android.support.design.widget.AppBarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
    
               <include layout="@layout/toolbar"/>
    
            </android.support.design.widget.AppBarLayout>
    
          <FrameLayout
              android:id="@+id/container"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
    
    
    
        </android.support.design.widget.CoordinatorLayout>
    
    
            <fragment
                android:id="@+id/navigation_drawer"
                android:name="aungkyawpaing.yangonuniversity.Fragments.NavigationDrawerFragment"
                android:layout_width="@dimen/navigation_drawer_width"
                android:layout_height="match_parent"
                android:layout_gravity="start|left"
                tools:layout="@layout/fragment_navigation_drawer"/>
    
    </android.support.v4.widget.DrawerLayout>
    

2 个答案:

答案 0 :(得分:1)

我正在使用库23.3.0。并且仍然会发生错误。

解决方法是添加几乎没有空间且可以隐藏的View。请参阅下面的结构。

<android.support.v4.widget.NestedScrollView
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

<android.support.design.widget.AppBarLayout>

    <android.support.v7.widget.Toolbar
        app:layout_scrollFlags="scroll|enterAlways" />

    <android.support.design.widget.TabLayout
        app:layout_scrollFlags="scroll|enterAlways" />

    <View
        android:layout_width="match_parent"
        android:layout_height=".3dp"
        android:visibility="visible"/>

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

有关详细信息,请参阅https://code.google.com/p/android/issues/detail?id=178037

答案 1 :(得分:0)

这是设计库中的一个错误 https://code.google.com/p/android/issues/detail?id=178037

  

此错误已在第22.2.1版中发布。