appbarlayout-spring-behavior

本项目提供了一种行为帮助AppBarLayout实现弹簧滚动效果,并修复了滚动过程中的惯性滑动问题。此外,还提供了一个修复版的NestedScrollView来解决惯性滑动的bug。

appbarlayout-spring-behavior

简介:One Behavior help AppBarLayout to scroll spring and with fling fix app bar and fling fix nest scroll view

One library contains one behavior help appbarlayout to scroll spring. In the sample have add the realtimeblur test and add tablayout with TabScrimHelper(animate color with CollapsingToolbarLayout).Because of some methods in the Behavior of AppBarLayout not open to the out package. So I set the package name same to the support design.And add one fling_fix_behavior to fix the appbarlayout to scroll down fling. Also add one NestedFixFlingScrollView to fix NestedScrollView fling bug.

  • AppBarLayout Spring
  • AppBarLayout Fling fix
  • NestedScrollView Fling Fix

Download Sample

Screenshot

First is with spring. Second with blur and TabScrimHelper.Third with fling fix

  

Installation

dependencies {
    compile 'com.github.todou:appbarspring:1.0.3'
}

Usages

AppBarLayout-Spring
<android.support.design.widget.AppBarLayout
        ...
        app:layout_behavior="@string/appbar_spring_behavior"
        ...>
        ...
</android.support.design.widget.AppBarLayout>

if you want add blur with the spring.You can add this by the RealtimeBlurView:

final RealtimeBlurView realtimeBlurView = (RealtimeBlurView) findViewById(R.id.real_time_blur_view);
AppBarLayout appBarLayout = (AppBarLayout) findViewById(R.id.app_bar);
AppBarLayoutSpringBehavior springBehavior = (AppBarLayoutSpringBehavior) ((CoordinatorLayout.LayoutParams) appBarLayout.getLayoutParams()).getBehavior();
springBehavior.setSpringOffsetCallback(new AppBarLayoutSpringBehavior.SpringOffsetCallback() {
      @Override
      public void springCallback(int offset) {
           int radius = 20 * (240 - offset > 0 ? 240 - offset : 0) / 240;
           realtimeBlurView.setBlurRadius(radius);
      }
});

With the tablayout you can add TabScrimHelper to let TabLayout animate color with the CollapsingToolbarLayout:

TabScrimHelper tabScrimHelper = new TabScrimHelper(tabLayout, collapsingToolbarLayout);
appBarLayout.addOnOffsetChangedListener(tabScrimHelper);
AppBarLayout-Fling Fix

Maybe you will find the appbar fling when scroll down is not smooth. You can try this appbar fling fix behavior:

<android.support.design.widget.AppBarLayout
        ...
        app:layout_behavior="@string/appbar_fling_fix_behavior"
        ...>
        ...
</android.support.design.widget.AppBarLayout>
NestScrollView-Fling Fix

To let NestScrollView fling when scroll up.Just use the NestedFixFlingScrollView

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值