我有一个在我的Android应用程序上运行的动画,它出现在模拟器API 22上,但没有显示在我的手机上(LG3 API 21)
的java:
LottieAnimationView lottieAnimationView = (LottieAnimationView) findViewById(R.id.animation_view);
lottieAnimationView.setImageAssetsFolder("images/");
lottieAnimationView.setAnimation("GM_part_1.json");
lottieAnimationView.loop(false);
lottieAnimationView.useExperimentalHardwareAcceleration(true);
lottieAnimationView.enableMergePathsForKitKatAndAbove(true);
lottieAnimationView.playAnimation();
布局:
<com.airbnb.lottie.LottieAnimationView
app:lottie_imageAssetsFolder="images"
android:scaleType="centerCrop"
android:id="@+id/animation_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
为什么会发生这种情况?以及如何解决这个问题