美文网首页
ToolBar滑动隐藏再下拉恢复时,概率出现Toolbar显示白

ToolBar滑动隐藏再下拉恢复时,概率出现Toolbar显示白

作者: 风怜目 | 来源:发表于2016-09-17 17:47 被阅读392次

    ToolBar滑动隐藏再下拉恢复时,概率出现Toolbar显示白色。

    解决:应该是bug,可以通过下面的方式解决

        <CoordinatorLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true">
            <android.support.design.widget.AppBarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    
                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    app:layout_scrollFlags="scroll|enterAlways|snap"/>
    
                <View android:layout_width="match_parent" android:layout_height="1dp"/>
    
            </android.support.design.widget.AppBarLayout>
             <android.support.v7.widget.RecyclerView
                    android:id="@+id/recyclerView"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:clipChildren="false"
                    android:clipToPadding="false"/>
        </CoordinatorLayout>
    

    相关文章

      网友评论

          本文标题:ToolBar滑动隐藏再下拉恢复时,概率出现Toolbar显示白

          本文链接:https://www.haomeiwen.com/subject/mihwettx.html