如何从安卓 (kotlin) 中由 Firebase 提供的照片 uri 中检索和存储用户个人资料图片?



这可能是一个重复的问题,但没有一个代码帮助我,有些答案是旧的,现在已经弃用了。我正在制作一个Android应用程序,我想在我的应用程序中检索和存储用户的个人资料图片。图像的 uri 由 FirebaseUser 类作为 uri 提供,但我想知道如何从 uri 中检索位图并将其保存在应用程序的"filesDir(("文件夹中,并在需要时从中获取可绘制图像。我显然尝试了一些代码,但没有一个有效。 我尝试的两种方法:-

fun getBitmap(context: Context, selectedImage: Uri): Bitmap? {
val imageStream = context.contentResolver.openInputStream(selectedImage)
val image = BitmapFactory.decodeStream(imageStream, null, BitmapFactory.Options())
imageStream?.close()
return image
}

我发现的另一种方法是使用ImageDecoder和MediaStore的getBitmap()(已弃用(

val bitmap = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
ImageDecoder.decodeBitmap(ImageDecoder.createSource(contentResolver, Uri.parse("https://lh3.googleusercontent.com/a-/link"))) //here parsing a google account profile pic link
} else {
MediaStore.Images.Media.getBitmap(contentResolver, Uri.parse("https://lh3.googleusercontent.com/a-/link"))
}

问题是每当我尝试其中任何一个时,应用程序都会不断崩溃,异常java.io.FileNotFoundException: No content provider
我错过了什么吗?我们是否需要在应用程序中进行任何清单配置才能从互联网访问 URI?

我建议你使用Glide,这是文档:https://github.com/bumptech/glide

Glide是一个库,只需调用他们的方法并传递您需要的URL,您就会很好。


我会向你解释如何准备它,

使用Gradle下载它,

repositories {
mavenCentral()
google()
}
dependencies {
implementation 'com.github.bumptech.glide:glide:4.10.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
}

然后使用它:)

imageView = findViewById(R.id.imageView)
Glide.with(this).load("http://yoururl.png").into(imageView)

这是将图像保存到Firebase:如何将位图保存到Firebase

我建议您的应用与Firebase数据库配合使用,并将图片网址保存到数据库中的用户个人资料中

最好 并做魔术:)

相关内容

  • 没有找到相关文章

最新更新