Android中實(shí)現(xiàn)加載動(dòng)畫效果可以通過以下幾種方式:
例如,在布局文件中添加一個(gè)ProgressBar:
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:indeterminate="true" />
首先,在res/drawable文件夾下創(chuàng)建一個(gè)XML文件(例如animation.xml),定義動(dòng)畫的幀序列:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/frame1" android:duration="200" />
<item android:drawable="@drawable/frame2" android:duration="200" />
<item android:drawable="@drawable/frame3" android:duration="200" />
<!-- 添加更多幀 -->
</animation-list>
然后,在代碼中加載并播放動(dòng)畫:
ImageView imageView = findViewById(R.id.imageView);
imageView.setImageResource(R.drawable.animation);
AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getDrawable();
animationDrawable.start();
例如,使用ValueAnimator實(shí)現(xiàn)一個(gè)漸變動(dòng)畫:
ValueAnimator animator = ValueAnimator.ofFloat(0f, 1f);
animator.setDuration(1000);
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
float value = (float) animation.getAnimatedValue();
view.setAlpha(value);
}
});
animator.start();
以上是三種常見的實(shí)現(xiàn)加載動(dòng)畫效果的方式,根據(jù)實(shí)際需求可以選擇適合的方式來實(shí)現(xiàn)。