标签:图片 get int hang link 颜色 控件 停止 boolean
compile 'com.march.billboardview:billboardview:2.0.6-beta4'
1 | xml 里面使用 |
1 |
|
1 | //初始化图片加载的工具,你可以自定义使用Picasso还是Glide等图片加载库加载 |
1 | private BillBoardView billBoardView; |
1 | billBoardView |
1 | mBoardAdapter.notifyDataSetChanged(demos); |
1 | public void startPlay() |
1 | public void setSwipeRefreshLayout(SwipeRefreshLayout sw) |
1 | //设置动画的方法 |
插值器 | 描述 |
---|---|
new AccelerateInterpolator() | 开始慢后面加速,由于距离较近效果不明显,有点像是匀速 |
new AccelerateDecelerateInterpolator() | 两头速度慢,中间加速,由于距离较近效果不明显,有点像是匀速 |
new DecelerateInterpolator() | 开始快后面慢,由于距离较近效果不明显,有点像是匀速 |
new BounceInterpolator() | 到达末尾跳跃弹起 |
new AnticipateInterpolator() | 先甩一下在移动 |
new AnticipateOvershootInterpolator() | 先甩一下到达终点后过界在后退 |
new OvershootInterpolator() | 过界后返回 |
new LinearInterpolator() | 常量变速 |
new LinearOutSlowInInterpolator() | 开始快后面慢 |
1 | //BillBoardView |
1 | //一些变量,你可以在子类中访问 |
1 | //为了方便使用定义了SimpleBoardAdapter |
1 | //Adapter做的工作是,覆盖在BillBoardView上面,随着BillBoardView的变化,修改UI |
1 |
|
标签:图片 get int hang link 颜色 控件 停止 boolean
原文地址:https://www.cnblogs.com/wangziqiang123/p/11618308.html