0
現在我從它的名字火力下載圖像..獲取圖像的名稱在火力存儲
storageRef.child("NAME OF your IMAGE").getBytes(Long.MAX_VALUE).addOnSuccessListener(new OnSuccessListener<byte[]>() {
@Override
public void onSuccess(byte[] bytes) {
// Use the bytes to display the image
Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
imageView.setImageBitmap(bitmap);
}
是否有可能獲取存儲在存儲火力圖像的所有名稱到一個列表。
可以請你給我一個例子,如何從datasnapshot @Alex馬莫 –
是得到了名字。請看我更新的答案。 –
感謝bro @Alex Mamo –