我正在使用this库来显示我的gif文件。当我的gif文件保存在我的设备存储中时,可以使用
显示gif
文件
GifDrawable gifFromPath;
File gifFile;
GifImageView gifImageView = (GifImageView) findViewById(R.id.imageHome);
gifFile = new File(context.getFilesDir().getAbsolutePath(), imageName);
try {
gifFromPath = new GifDrawable(gifFile);
} catch (IOException e) {
e.printStackTrace();
}
gifImageView.setImageDrawable(gifFromPath);
我想知道如何显示gif
文件,而不是使用保存它的path
我希望从gif
/获取link
/ url
。
答案 0 :(得分:2)
我使用this库。我使用ImageView
代替。
ImageView myImageView = (ImageView) findViewById(R.id.myImageView);
Glide.with(this).load(url).into(myImageView);