所以我想基本上從Firebase存儲中獲取圖片(我已將規則設置爲公開)。Firebase存儲和Android圖片
這是我
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()方法一樣。
你能否提供錯誤日誌,讓你的應用程序崩潰。所以它可以幫助我們更快地發現崩潰。 – pRaNaY