我有这个代码在视图中显示横幅,但只显示静态图像,即使它是一个animsted gif,如何使这个工作在GIF动画上。
java代码
ImageLoader.getInstance().displayImage(ConstValue.CONTENTS_IMAGE+"big/"+companyMap.get("banner"), imgthumb, options, animateFirstListener);
xml代码
<ImageView
android:id="@+id/img_thumb"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:src="@drawable/thumb_bg" />
答案 0 :(得分:2)
您可以使用Glide在ImageView中显示gif动画。用法:
Glide.with(context).load(YOUR_IMAGE_URL).asGif().crossFade().into(YOUR_IMAGE_VIEW);