是否可以将旋转进度条用作Android XML中图像视图的src?或者,如果不是通过XML,那么以编程方式进行吗?
提前谢谢你。
答案 0 :(得分:0)
使用AnimationDrawable显示图片视图中的进度
ImageView img = (ImageView)findViewById(R.id.spinning_wheel_image);
img.setResource(R.drawable.spin_animation);
// Get the background, which has been compiled to an AnimationDrawable object.
AnimationDrawable frameAnimation = (AnimationDrawable) img.getDrawable();
// Start the animation (looped playback by default).
frameAnimation.start();
有关帧动画android的详细信息,请参阅this。