提前致谢,
我正在尝试在我的 imageView 中显示 gif 图像。GIF 图像本地存在于我的设备中。
ImageView imageView = (ImageView) findViewById(R.id.img);
File file = new File(Environment
.getExternalStorageDirectory().toString(), "sample.gif");
Uri uri = Uri.fromFile(file);
Glide.with(getApplicationContext()).load(uri).into(imageView);
文件路径是正确的,仍然无法看到 gif 加载。