将图像放入特定ID下的Firebase中

问题描述 投票:0回答:1

我想在Firebase中上传图像。如果选择了特定ID,则将图像存储在Firebase中的特定文件夹中

firebase android-studio android-fragments firebase-realtime-database firebase-storage
1个回答
0
投票
 StorageReference reference = FirebaseStorage.getInstance().getReference()
            .child("profilImages")
            .child(uid + ".jpeg");

[将图像在profilImages下存储为uid.jpeg也许这是答案的一部分。

© www.soinside.com 2019 - 2024. All rights reserved.