可以显示gif动态图的ImageView。 对于复杂的只是展示性的动画、没有交互的,选用gif动画制作要容易的多,比起用代码画出来。
效果图:
如何使用和使用ImageView一样
android:id="@+id/gifImageView"
android:layout_gravity="center"
android:scaleType="fitCenter"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
2. 你需要用java设置图片,gifImageView = (GifImageView) findViewById(R.id.gifImageView);
InputStream is = this.getResources().openRawResource(R.drawable.image01);
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] b = new byte[2048];
int len = 0;
while ((len = is.read(b, 0, 2048))