Coder Social home page Coder Social logo

filepicker's Introduction

Preview

FilePicker

FilePicker is an Android Library that lets you choose any kind of file easyly. It handles the storage permission itself.

Minimum Sdk Version

Api Level 19 or Above

Max Sdk Version

Api Level 30

Installation

Add the following code snippet in your project level gradle file

repositories {
    ...
    maven { url 'https://jitpack.io' }
  }

Add the dependency in your app gradle

dependencies {
       ...
      implementation 'com.github.ajayasija23:FilePicker:1.0.1' //choose latest version
  }

Usage

Start FilePickerActivity and pass the MimeType of the target file

Intent intent=new Intent(this, FilePickerActivity.class);
intent.putExtra("multiple",true);
intent.putExtra("type","*/*");
startActivityForResult(intent,REQUEST_CODE);

Override the onActivityResult

@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode==REQUEST_CODE&&resultCode==RESULT_OK&&data!=null){
        if (data.getData()!=null){
            File file=FileUtils.getFile(this,data.getData());
            selectedFiles.add(file.getName());
        }
        if (data.getClipData()!=null){
            for(int i = 0; i < data.getClipData().getItemCount(); i++) {
                Uri uri = data.getClipData().getItemAt(i).getUri();
                File file=FileUtils.getFile(this,uri);
                selectedFiles.add(file.getName());
            }
        }
    }
}

filepicker's People

Contributors

ajayasija23 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

filepicker's Issues

Android 11 Support

Hi!

I tested your library in Android 11 and when trying to retrieve a pdf file, it crashes.

Here's the error log:

java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=101, result=-1, data=Intent { dat=content://com.android.providers.media.documents/document/document:39 flg=0x1 }} to activity {com.interactivex.kotlin.android.debug/com.interactivex.kotlin.android.ui.activity.dashboard.DashboardActivity}: java.lang.NullPointerException: FileUtils.getFile(this, data?.data) must not be null

Caused by: java.lang.NullPointerException: FileUtils.getFile(this, data?.data) must not be null

It works for images and videos in Android 11 and it works for Android 10 (I assume older Android versions as well) with images, videos, pdfs.

I used / and application/* MimeType as well. But still doesn't work with Android 11 when trying to retrieve non-media files.

Thank you!

Theme.AppCompat.NoActionBar support

Hi!

This is a good lightweight filepicker! However, when I tried to run it with a parent theme of NoActionBar, it crashes. Can you add support for that?

Thank you!

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.