在Android中,可以使用Glide库来动态加载GIF图片。以下是一个示例代码,演示如何从drawable目录加载GIF图片并显示在ImageView中:
首先,确保已在项目的build.gradle文件中添加了Glide的依赖:
dependencies {
    implementation 'com.github.bumptech.glide:glide:4.12.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
}
然后,在你的Activity或Fragment中,使用以下代码来加载GIF图片:
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.resource.gif.GifDrawable;
import com.bumptech.glide.request.target.DrawableImageViewTarget;
// 在你的Activity或Fragment中的某个方法中
DrawableImageViewTarget imageViewTarget = new DrawableImageViewTarget(imageView) {
    @Override
    public void onResourceReady(@NonNull Drawable resource, @Nullable Transition super Drawable> transition) {
        super.onResourceReady(resource, transition);
        if (resource instanceof GifDrawable) {
            GifDrawable gifDrawable = (GifDrawable) resource;
            gifDrawable.setLoopCount(GifDrawable.LOOP_FOREVER);
        }
    }
};
Glide.with(this)
    .asGif()
    .load(R.drawable.your_gif_image)
    .into(imageViewTarget);
在这个示例中,imageView是一个ImageView实例,R.drawable.your_gif_image是你的GIF图片资源的资源ID。
这样,你就可以从drawable目录中动态加载GIF图片并显示在ImageView中了。同时,你可以使用Glide的其他功能来对图片进行处理和加载的配置。