我是 android 的初学者,我想创建一个逐帧动画,其图像放置在 assets 文件夹中。以前我创建了一个简单的动画,图像被放置在 res/drawable 文件夹中。我还在该文件夹中放置了一个 gyro_animation.xml 文件。在这个示例中,我在我的活动中创建了一个动画,如下所示:
ImageView gyroView = (ImageView) findViewById(R.id.gyro);
gyroView.setBackgroundResource(R.drawable.gyro_animation));
final AnimationDrawable gyroAnimation = (AnimationDrawable) gyroView.getBackground();
现在要创建其图像位于资产文件夹中的动画,我该怎么办?
提前致谢。