gpt4 book ai didi

android - Firebase 存储和 Android 图像

转载 作者:太空狗 更新时间:2023-10-29 16:28:49 26 4
gpt4 key购买 nike

所以我基本上想从 Firebase 存储中获取图像(我将规则设置为公开)。

这是我的

    ImageView image = (ImageView)findViewById(R.id.imageView);
Glide.with(this)
.load("https://firebasestorage.googleapis.com/v0/b/test-7c916.appspot.com/o/images.jpg?alt=media&token=b207cb11-9ad5-48e3-86ac-1dcb07ee6013")
.into(image);

我没有使用 https 链接。我想使用存储引用。但每次我尝试使用存储引用时,我的应用程序都会崩溃。请帮忙。

类似于 .child() 方法。

最佳答案

您需要使用 StorageReference加载 Firebase 存储图像。

   // Reference to an image file in Cloud Storage
StorageReference storageReference = = FirebaseStorage.getInstance().getReference().child("myimage");


ImageView image = (ImageView)findViewById(R.id.imageView);

// Load the image using Glide
Glide.with(this /* context */)
.using(new FirebaseImageLoader())
.load(storageReference)
.into(image );

更多详情可以查看Using FirebaseUI to download and display images .

关于android - Firebase 存储和 Android 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43826927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com