先来段Behavior代码,网上关于floatingActionbutton(以下简称FAB)滑动的代码很多了,参考一下。
public class FabBehavior extends floatingActionbutton.Behavior{ private static final Interpolator INTERPolATOR = new FastOutSlowInInterpolator(); private boolean mIsAnimatingOut = false; public FabBehavior(Context context,AttributeSet attrs) { super(); } @OverrIDe public boolean onStartnestedScroll(final CoordinatorLayout coordinatorLayout,final floatingActionbutton child,final VIEw directTargetChild,final VIEw target,final int nestedScrollAxes) { // Ensure we react to vertical scrolling return nestedScrollAxes == VIEwCompat.SCRolL_AXIS_VERTICAL || super.onStartnestedScroll(coordinatorLayout,child,directTargetChild,target,nestedScrollAxes); } @OverrIDe public voID onnestedScroll(final CoordinatorLayout coordinatorLayout,final int dxconsumed,final int dyConsumed,final int dxUnconsumed,final int dyUnconsumed) { super.onnestedScroll(coordinatorLayout,dxconsumed,dyConsumed,dxUnconsumed,dyUnconsumed); if (dyConsumed > 0 && !this.mIsAnimatingOut && child.getVisibility() == VIEw.VISIBLE) { // User scrolled down and the FAB is currently visible -> hIDe the FAB animateOut(child); } else if (dyConsumed < 0 && child.getVisibility() != VIEw.VISIBLE) { // User scrolled up and the FAB is currently not visible -> show the FAB animateIn(child); } } // Same animation that floatingActionbutton.Behavior uses to hIDe the FAB when the AppbarLayout exits private voID animateOut(final floatingActionbutton button) { if (Build.VERSION.SDK_INT >= 14) { VIEwCompat.animate(button).translationY(button.getHeight() + getmarginBottom(button)).setInterpolator(INTERPolATOR).withLayer() .setListener(new VIEwPropertyAnimatorListener() { public voID onAnimationStart(VIEw vIEw) { FabBehavior.this.mIsAnimatingOut = true; } public voID onAnimationCancel(VIEw vIEw) { FabBehavior.this.mIsAnimatingOut = false; } public voID onAnimationEnd(VIEw vIEw) { FabBehavior.this.mIsAnimatingOut = false; vIEw.setVisibility(VIEw.GONE); } }).start(); } else { } } // Same animation that floatingActionbutton.Behavior uses to show the FAB when the AppbarLayout enters private voID animateIn(floatingActionbutton button) { button.setVisibility(VIEw.VISIBLE); if (Build.VERSION.SDK_INT >= 14) { VIEwCompat.animate(button).translationY(0) .setInterpolator(INTERPolATOR).withLayer().setListener(null) .start(); } else { } } private int getmarginBottom(VIEw v) { int marginBottom = 0; final VIEwGroup.LayoutParams layoutParams = v.getLayoutParams(); if (layoutParams instanceof VIEwGroup.marginLayoutParams) { marginBottom = ((VIEwGroup.marginLayoutParams) layoutParams).bottommargin; } return marginBottom; }}
这是自定义的一个Behavior类,主要在onnestedScroll中自定义了出现和消失的动画。使用的时候,在xml文件中给FAB加一个包含完整behavior类名的layout_behavior属性
app:layout_behavior="com.normalframe.Widgets.vIEw.FabBehavior"
这样FAB就会随着列表上滑消失,下滑出现。这个功能主要是要处理FAB的位置会使列表最后一项被挡住的问题,当上滑时,FAB隐藏,这样当到达列表底部最后一项时,由于刚刚的动作是上滑动作,所以FAB处于隐藏状态,不会遮挡到列表。
在写这个功能时,发现了一个问题:
上滑时FAB能够正常隐藏,但是下拉列表时,FAB就不出现了。
而一样的代码如果放到其它项目中,有些又可以正常实现功能。DeBUG的时候发现,上拉时会调用onnestedScroll,于是其中自定义的隐藏方法可以被调用,但下滑时,不调用onnestedScroll。
以上所述是小编给大家介绍的AndroID自定义floatingActionbutton滑动行为只隐藏不出现的问题小结,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!
总结以上是内存溢出为你收集整理的Android自定义FloatingActionButton滑动行为只隐藏不出现的问题小结全部内容,希望文章能够帮你解决Android自定义FloatingActionButton滑动行为只隐藏不出现的问题小结所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)