我们可以使用 firebase 控制台手动上传图片吗?

Can we use firebase console to upload images manually?

在我的应用程序中,我必须在 RecyclerView 中显示来自 Firebase 数据库的图像,但问题是我不想使用我的应用程序上传图像,但我希望使用 Firebase 存储控制台手动添加它们并在以后使用它们的位置将被添加到 Firebase 数据库中。我试过这样做,但 glide 没有加载图像。那么有什么方法可以手动上传图片并在应用程序中加载图片吗?

已编辑: enter image description here 看我的图片,我只是在我的数据库中添加了图片的存储位置table。之后我使用这些函数获取图像位置并在 glide 库的帮助下加载它们。

这是我从 Firebase 数据库中检索类别的代码。

fun getCategories() : List<Categories>{
    val categoriesList = mutableListOf<Categories>()
    CoroutineScope(IO).launch {
           databaseReference.child("categories")
               .addValueEventListener(object : ValueEventListener {

                   override fun onDataChange(dataSnapshot: DataSnapshot) {
                       for (postSnapshot in dataSnapshot.children) {
                           val categories = postSnapshot.getValue(Categories::class.java)
                           categoriesList.add(categories!!)
                       }
                   }

                   override fun onCancelled(p0: DatabaseError) {

                   }
               })
    }
    return categoriesList
}

检索类别列表后,我正在适配器 class 中加载我的图像。这是我的适配器 class 代码

override fun onBindViewHolder(holder: MyViewHolder, position: Int) {
    val model = modelList[position]
    holder.nameOfFruit?.text = model.name
    holder.nameOfFruit?.setOnClickListener {
        it.findNavController().navigate(R.id.action_mainFragment_to_choiceSelectedFragmentModel)
    }
        Glide.with(myContext!!).load(model.url).into(holder.imageOfFruit)
}

已编辑:这是我的图像 URL 存储在我的数据库中。 enter image description here

您在数据库中存储了 "gs://" URL。这是一种特殊的云存储 URL,仅适用于 Google 基础架构。它不适用于浏览器或应用程序。

您必须改为在数据库中存储 download URL。如果您做对了,它将以 "https://".

开头