阅读量:0
要实现Android MaterialCardView的动画效果,可以使用属性动画或布局动画来实现。以下是一个简单的示例:
- 使用属性动画实现动画效果:
MaterialCardView cardView = findViewById(R.id.cardView); ObjectAnimator scaleX = ObjectAnimator.ofFloat(cardView, "scaleX", 0.5f, 1.0f); ObjectAnimator scaleY = ObjectAnimator.ofFloat(cardView, "scaleY", 0.5f, 1.0f); AnimatorSet animatorSet = new AnimatorSet(); animatorSet.playTogether(scaleX, scaleY); animatorSet.setDuration(1000); animatorSet.start();
- 使用布局动画实现动画效果:
在res/anim文件夹下创建一个scale.xml文件,并添加以下内容:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <scale android:duration="1000" android:fromXScale="0.5" android:fromYScale="0.5" android:toXScale="1.0" android:toYScale="1.0" android:pivotX="50%" android:pivotY="50%" android:interpolator="@android:interpolator/accelerate_decelerate"/> </set>
然后在代码中使用布局动画来实现动画效果:
MaterialCardView cardView = findViewById(R.id.cardView); Animation animation = AnimationUtils.loadAnimation(this, R.anim.scale); cardView.startAnimation(animation);
这样就可以实现MaterialCardView的动画效果了。您可以根据需要调整动画的属性和持续时间来达到更好的效果。