记性不太好系列之ToolBar上拉滑动隐藏
原址 : ifjgm(简书)
挺简单,几句话的事儿,只要实现布局就可以
//最外层要用android.support.design.widget.CoordinatorLayout
//Toolbar外层要包裹一层AppBarLayout,否则下方RecyclerView会和标题栏重叠
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
<!--这个属性申明这个控件会随着滚动而隐藏-->
app:layout_scrollFlags="scroll|enterAlways"
app:logo="@mipmap/ic_launcher"
app:subtitle="subTitle"
app:title="title" />
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
<!--申明滚动的控件,并不是随便哪个控件滚动ToolBar就会隐藏的-->
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
然后在界面中将RecyclerView填充多点数据,滑着试验一下吧!