一债查、根據(jù)項(xiàng)目需求非区,需要在自定義canvas 中指定坐標(biāo)點(diǎn)(x,y)顯示lottie盹廷,嘗試了很多方法征绸,
遇到的問題有:
1、lottie無法顯示出來俄占;
2歹垫、lottie不能動(dòng)態(tài)刷新;
3颠放、lottie顯示的大小過大;
4吭敢、顯示坐標(biāo)點(diǎn)確定碰凶;
二、 下面是我具體的實(shí)現(xiàn)方法:
引入lottie 庫: implementation 'com.airbnb.android:lottie:6.3.0'
//在自定義CanvasView 中
public class CanvasView extends View {
private LottieAnimationView lottieAnimationView;
public void init(){
lottieAnimationView = new LottieAnimationView(getContext());
lottieAnimationView.setAnimation("json/red_circle.json");
lottieAnimationView.loop(true);
lottieAnimationView.playAnimation();
// 啟動(dòng)定時(shí)器,自動(dòng)刷新CanvasView 鹿驼,
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
lottieAnimationView.setProgress(lottieAnimationView.getProgress() + 0.075f);
if (lottieAnimationView.getProgress() >= 0.97f) {
lottieAnimationView.setProgress(0f);
postInvalidate(); // 重新繪制
}else {
postInvalidate();
}
// 重新繪制
}
}, 0, 150); // 延遲0ms欲低,每100ms執(zhí)行一次
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 手動(dòng)測量和布局
lottieAnimationView.measure(
View.MeasureSpec.makeMeasureSpec(getWidth(), View.MeasureSpec.EXACTLY),
View.MeasureSpec.makeMeasureSpec(getHeight(), View.MeasureSpec.EXACTLY)
);
lottieAnimationView.layout(0, 0, getWidth()/10, getHeight()/10);
// 創(chuàng)建一個(gè)新的Canvas,并繪制LottieAnimationView
Bitmap bitmap = Bitmap.createBitmap(getWidth()/10, getHeight()/10,
Bitmap.Config.ARGB_8888);
Canvas lottieCanvas = new Canvas(bitmap);
lottieAnimationView.draw(lottieCanvas);
if(bitmap !=null && !bitmap.isRecycled()){
//x, y 是當(dāng)前的坐標(biāo)值畜晰,自定義處理砾莱, “除以10”是將原來顯示較大的圖形縮小10倍,除2是將
// 圖形的中心點(diǎn)移動(dòng)到(X凄鼻,Y)坐標(biāo)點(diǎn)腊瑟;
canvas.drawBitmap(bitmap, X-getWidth()/10/2, Y-getHeight()/10/2, null);
}
三、 最終結(jié)果