Coder Social home page Coder Social logo

Comments (5)

thatfiredev avatar thatfiredev commented on August 16, 2024

@adibsyahmi17 unfortunately, TaskSnapshot does not have a getDownloadUrl() method. You'll need to call that method on the StorageReference that you created to upload the file.

from codelab-friendlychat-android.

adibsyahmi17 avatar adibsyahmi17 commented on August 16, 2024

@adibsyahmi17 unfortunately, TaskSnapshot does not have a getDownloadUrl() method. You'll need to call that method on the StorageReference that you created to upload the file.

can you show me how because this is my first time using android studio

from codelab-friendlychat-android.

thatfiredev avatar thatfiredev commented on August 16, 2024

@adibsyahmi17 Can you show the code where you create the StorageReference? The one that comes before this onSuccess code that you posted here.

from codelab-friendlychat-android.

adibsyahmi17 avatar adibsyahmi17 commented on August 16, 2024

if (imageURI != null){
StorageReference fileReference = storageReference.child(System.currentTimeMillis()
+ "." + getFileExtension(imageURI));
fileReference.putFile(imageURI)
.addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@OverRide
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@OverRide
public void run() {
mProgressBar.setProgress(0);
}
}, 500);

                        Toast.makeText(AddSolatPage.this, "Upload successful", Toast.LENGTH_LONG).show();
                        Upload upload = new Upload(solatTitle.getText().toString().trim(),
                                taskSnapshot.getStorage().getDownloadUrl().toString());

                    }
                })
                .addOnFailureListener(new OnFailureListener() {
                    @Override
                    public void onFailure(@NonNull Exception e) {
                        Toast.makeText(AddSolatPage.this, e.getMessage(), Toast.LENGTH_SHORT).show();
                    }
                })
                .addOnProgressListener(new OnProgressListener<UploadTask.TaskSnapshot>() {
                    @Override
                    public void onProgress(@NonNull UploadTask.TaskSnapshot snapshot) {
                        double progress = (100.0 * snapshot.getBytesTransferred() / snapshot.getTotalByteCount());
                        mProgressBar.setProgress((int) progress);
                    }
                });
    }else {
        Toast.makeText(this,"No file selected",Toast.LENGTH_SHORT).show();
    }

this is my code

from codelab-friendlychat-android.

thatfiredev avatar thatfiredev commented on August 16, 2024

@adibsyahmi17 Thanks for providing the code. You'll need to change your onSuccess method to reuse the StorageReference that you created:

@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
    Handler handler = new Handler();
    handler.postDelayed(new Runnable() {
        @Override
        public void run() {
            mProgressBar.setProgress(0);
        }
    }, 500);

    Toast.makeText(AddSolatPage.this, "Upload successful", Toast.LENGTH_LONG).show();
    fileReference.getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() {
        @Override
        public void onSuccess(Uri uri) {
            String url = uri.toString();
            Upload upload = new Upload(solatTitle.getText().toString().trim(), url);
        }
    }).addOnFailureListener(new OnFailureListener() {
        @Override
        public void onFailure(@NonNull Exception exception) {
            // Handle any errors
        }
    });
}

from codelab-friendlychat-android.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.