在Android中使用Lottie,首先需要在項目的build.gradle文件中添加Lottie庫的依賴:
implementation 'com.airbnb.android:lottie:4.1.0'
然后在布局文件中添加LottieAnimationView控件:
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:lottie_fileName="your_animation.json"
app:lottie_autoPlay="true"
app:lottie_loop="true" />
接著在Activity或Fragment中找到該控件,然后加載動畫文件并進行播放:
LottieAnimationView animationView = findViewById(R.id.animation_view);
animationView.setAnimation("your_animation.json");
animationView.playAnimation();
通過調用LottieAnimationView的方法,可以控制動畫的播放、暫停、循環等行為。此外,Lottie還支持一些高級功能,比如設置動畫速度、顏色濾鏡、事件監聽等。詳細的使用方法可以查看Lottie的官方文檔。