我目前正在研究 AnimationDrawable,我想知道是否每个可绘制项目都可以通过左右滑动手势来控制以执行倒带和前进。如果没有检测到手势,它应该停止。
提前致谢。
这是我的 imageview 和 animationdrawable 代码:
imageView1 = (ImageView)findViewById(R.id.imageView1);
imageView1.setBackgroundResource(R.drawable.rotate_animation);
animationDrawable = (AnimationDrawable)imageView1.getBackground();
animationDrawable.start();