Android从网址添加快捷方式图标,而不是从可绘制资源添加

时间:2017-04-03 08:55:08

标签: android

我有一个应用程序,我在哪里添加快捷方式。我想从URL路径添加快捷图标图像(图像存储在服务器上,可以更改),而不是使用Drawable,但我不知道如何做到这一点。我试图在这个社区找到很多东西。有什么帮助吗?

2 个答案:

答案 0 :(得分:0)

如果使用的术语"快捷方式图标"是一个视图或其后代,如ImageView,然后您可以设置图像,您的应用程序通过这样做从服务器接收:

为您的app.gradle文件添加依赖项:

compile 'com.github.bumptech.glide:glide:3.7.0'

在活动中,您可以使用此方法将图片设置为您的应用从服务器接收的imageview

ImageView imageView = (ImageView) findViewById(R.id.image_view);
Glide.with(imageview.getContext()).load("https://url").error(R.drawable.not_found).centerCrop().into(imageview);

答案 1 :(得分:-1)

在build.gradle

中添加
compile 'com.squareup.picasso:picasso:2.5.2'

现在您可以使用以下代码加载图像

Picaso.with(this).load(urlHere).into(imageView);