implementation 'com.wuyr:arrowdrawable:1.0.1'
● 作为刷新Header (需配合SmartRefreshLayout使用)
implementation 'com.wuyr:arrowheader:1.0.3'
Method | Description |
---|---|
create(View targetView) | 创建对象 targetView: 显示此Drawable的容器,下同 |
create(View targetView, int width, int height) | 指定Drawable的宽高来创建对象 |
create(View targetView, int width, int height, int bowLength) | 指定Drawable的宽高、弓的长度来创建对象 |
reset() | 重置ArrowDrawable为静止状态 |
hit() | 开始播放命中动画 |
miss() | 开始播放未命中动画 |
fire() | 播放发射动画 |
Method | Description |
---|---|
updateSize(int width, int height, int bowLength) | 更新ArrowDrawable的尺寸 |
setBaseLinesFallDuration(int duration) | 设置线条的坠落时长 |
setFiringBowFallDuration(int duration) | 设置发射中的弓向下移动的时长 |
setFiredArrowShrinkDuration(int duration) | 设置发射后的箭收缩动画时长 |
setFiredArrowMoveDuration(int duration) | 设置发射后的箭每次上下移动的时长 |
setSkewTan(float tan) | 设置命中后左右摆动的幅度(正切值) |
setMaxSkewCount(int count) | 设置命中后一共要摆动的次数 |
setMissDuration(int duration) | 设置未命中动画时长 |
setHitDuration(int duration) | 设置命中动画时长 |
setSkewDuration(int duration) | 设置命中后每次左右摆动的时间 |
setLineColor(int color) | 设置坠落的线条颜色 |
setBowColor(int color) | 设置弓颜色 |
setStringColor(int color) | 设置弦颜色 |
setArrowColor(int color) | 设置箭颜色 |
Name | Format | Description |
---|---|---|
bowColor | color (默认: 白色) | 弓颜色 |
arrowColor | color (默认: 白色) | 箭颜色 |
stringColor | color (默认: 白色) | 弦颜色 |
lineColor | color (默认: 白色) | 坠落的线条颜色 |
bowLength | dimension (默认: 总宽度的30%) | 弓长 |