杂记

记性不太好系列之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填充多点数据,滑着试验一下吧!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值