Giter Club home page Giter Club logo

Comments (3)

karimkalunga avatar karimkalunga commented on June 2, 2024 2

@Ab3id for a workaround you can check if the list is null in your onActivityResult method. It's a late comment but I hope this helps someone.

ArrayList<MediaFile> list = data.getParcelableArrayListExtra(MEDIA_FILES);
if (list != null && list.size() > 0) {
// Do something
}

from filepicker.

jaiselrahman avatar jaiselrahman commented on June 2, 2024

Sorry for the late reply can you show be the Configurations code.

from filepicker.

Marc-Ferrer-Castillo avatar Marc-Ferrer-Castillo commented on June 2, 2024
private static final int ERROR_REQUEST_CODE = -1;
private static final int BUSCAR_IMATGE = 0;
private static final int BUSCAR_VIDEO = 1;
private static final int BUSCAR_SO = 2;

...

if (resultCode == RESULT_OK) {

    // Selected files from normal file pick
    Uri uri = data.getData();
    // Selected files from FilePickerActivity
    ArrayList<MediaFile> fitxers = data.getParcelableArrayListExtra(FilePickerActivity.MEDIA_FILES);
    // Intent
    Intent intent = null;

    // If ArrayList<MediaFile> fitxers is null
    if (fitxers != null && fitxers.size() == 0) {
        requestCode = ERROR_REQUEST_CODE;
    }

    switch(requestCode){

        // Image
        case BUSCAR_IMATGE:
            if (edicio){
                intent = new Intent (this, EditarImagen.class).setData(uri);
            }
            else{
                intent = new Intent (this, MostrarImagen.class).setData(uri);
            }
            break;

        // Audio
        case BUSCAR_SO:

            // Si es vol editar
            if (edicio){

            }
            // Només visualitzat
            else{
                intent = new Intent (this, MostrarVideo.class).setData(fitxers.get(0).getUri());
            }
            break;

        //  video
        case BUSCAR_VIDEO:

            if (edicio){
                intent = new Intent (this, EditarVideo.class).setData(fitxers.get(0).getUri());
                intent.putExtra("RUTA", fitxers.get(0).getPath());
            }
            
            else{
                intent = new Intent (this, MostrarVideo.class).setData(fitxers.get(0).getUri());
            }
            break;

        default:
            Toast.makeText(MainActivity.this, "Any file selected", Toast.LENGTH_LONG).show();
            break;
    }
    // Starts activity 
    if (intent != null){
        startActivity(intent);
    }
}

from filepicker.

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.