要實現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的動畫效果了。您可以根據需要調整動畫的屬性和持續時間來達到更好的效果。