Firebase Storage | Downloading images or files

preview_player
Показать описание
In this video you will learn about #firebase #storage basics. You will learn how to #download image from firebase storage.

Dependencies: 

#yoursTruly #FirebaseSDK #tutorial #android

———————————————
More useful videos
———————————————

———————————————
What I use
———————————————

#yoursTRULY #tutorial #howto
Рекомендации по теме
Комментарии
Автор

Thank so much, explained with such an ease. God bless you.

utkarshkushwaha
Автор

Thank you so much bro for ur precious help

ganeshlokhande
Автор

How to get size of specific folder in Firebase storage ?

vaibhavpallod
Автор

Thank u so much, i translate this to kotlin and works perfectly :)

anbeca
Автор

thank you, bye bye, tata, goodday :-)
thank you bro
it was very easy to understand

hemanthshetty
Автор

ProfileimageView has specific file in your program or not

adityanagdeve
Автор

Is 1MB the max that can be downloaded from Firebase storage??

errinwright
Автор

Thanks for making all these videos , also is it possible to download or get download uri of multiple files present in a firebase storage folder?

vickynegi
Автор

sir how to filter image and video, while retrieving from Firbase storage, like instagram and facebook posts does.

sudeepkotari
Автор

Thank you, but In my program, .child("Python") method is not working properly. what we can do/ plzz give solution

siddhisharma
Автор

I've noticed using download urls for videos gets quite expensive with bandwidth... Any way around that?

michaelzhao
Автор

sir u are just showing url in the logs, plz tell how to return that url from the onsuccess method, PLZ reply fast!!!

kunalnayak
Автор

How can we make this file private for each users?

abilashbalakrishnan
Автор

one line code... http get request to your storage URL to get the file you want.

dasdunetechnologies
Автор

Damn those IDE colors are amazing. Is that a theme you use or u made it yourself?

joandersongoncalves
Автор

the image did not load into my image view

mohemedaasik
Автор

bother can u plzzz create a playlist and upload so it will use full for us to read in proper order

prathiv
Автор

Really great video, Thanks alot! but i failed on getting my image from my storage. On your video, you did show how to download images from firebase storage, but i don't have the basics about android.
i dont know how to use your code.
please help me if you have time ;(



public class Activity2 extends AppCompatActivity {
public Button btn_test;
public ImageView eggPic;

@Override
protected void onCreate(Bundle savedInstanceState) {



btn_test = findViewById(R.id.button);
View.OnClickListener() {
@Override
public void onClick(View v) {

}
});
eggPic =

FirebaseStorage storage =
StorageReference imageRef = storage.getReference()
.child("음식")
.child("계란.PNG");

imageRef.getBytes(1024*1024)
.addOnSuccessListener(new OnSuccessListener<byte[]>() {
@Override
public void onSuccess(byte[] bytes) {
Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);

}
});


}
}

hkzqltm