如何从数据库中的 URL 加载图像
How to load image from URL that is in database
如何使用保存在数据库中的 URL 加载图像并将其显示在图像视图的 Recycler 视图中
我有一个数据库,它在我的应用程序中将数据显示为输出,但我不知道如何为数据库中的图像加载 URL 作为图像。
有多个选项可用于从 URL.
加载图像
您可以这样使用 Picasso:
Picasso.get().load("your_url").into(imageView);
您也可以使用 Glide(比 Picasso 快)
Glide.with(this).load("your_url").into(imageView);
或者您可以将 URL 转换为位图,然后在不使用任何库的情况下将其设置到 ImageView 中。请参阅此方法:How to get bitmap from a url in android
您可以使用 Glide 从 URL 加载图像:
导入依赖
implementation 'com.github.bumptech.glide:glide:4.11.0'
Glide
.with(context)
.load("URL placed here")
.centerCrop()
.placeholder(R.drawable.placeholder)
.into(imageview)
如何使用保存在数据库中的 URL 加载图像并将其显示在图像视图的 Recycler 视图中
我有一个数据库,它在我的应用程序中将数据显示为输出,但我不知道如何为数据库中的图像加载 URL 作为图像。
有多个选项可用于从 URL.
加载图像您可以这样使用 Picasso:
Picasso.get().load("your_url").into(imageView);
您也可以使用 Glide(比 Picasso 快)
Glide.with(this).load("your_url").into(imageView);
或者您可以将 URL 转换为位图,然后在不使用任何库的情况下将其设置到 ImageView 中。请参阅此方法:How to get bitmap from a url in android
您可以使用 Glide 从 URL 加载图像:
导入依赖
implementation 'com.github.bumptech.glide:glide:4.11.0'
Glide
.with(context)
.load("URL placed here")
.centerCrop()
.placeholder(R.drawable.placeholder)
.into(imageview)