Questions tagged [android-afilechooser]

Android library that provides a file explorer to let users select files on external storage.

aFileChooser is an Android Library Project that simplifies the process of presenting a file chooser on Android 2.1+.

Intents provide the ability to hook into third-party app components for content selection. This works well for media files, but if you want users to be able to select any file, they must have an existing "file explorer" app installed. Because many Android devices don't have stock File Explorers, the developer must often instruct the user to install one, or build one, themselves. aFileChooser solves this issue.

Features:

  • Full file explorer
  • Simplify GET_CONTENT Intent creation
  • Hooks into Storage Access Framework
  • Determine MIME data types
  • Follows Android conventions (Fragments, Loaders, Intents, etc.)
  • Supports API 7+

    Setup

    Usage

    Credits

    Licenses

enter image description here enter image description here

35 questions
0
votes
1 answer

image view:second image is replaced by the first image captured

hello i am struck in this coding first of all i am having two image view's when we click one of them the chooser dialog box will open which is having two option 1.take photo 2.select from gallery when i select from galley everything is working fine…
0
votes
1 answer

Trying to import android lib project from git hub I get Error:Configuration with name 'default' not found. (pics included)

Hi i am trying to import this https://github.com/jfmdev/afiledialog or https://github.com/iPaulPro/aFileChooser I get the same message despite which one i try to import... you can see they are both in the lib though. right now my gradles are only…
Tintinabulator Zea
  • 2,617
  • 5
  • 18
  • 32
0
votes
1 answer

afilechooser not returning path for device with external and internal storage

I'm using the afilechooser module to select a file from the user's device. The device has both internal storage and external storage. when I select a file from internal storage the path is returned correctly the uri looks like this: Uri…
graffixnyc
  • 1
  • 1
  • 8
0
votes
1 answer

aFileChooser error, get file path shows error in fragment

public void onActivityResult(int requestCode, int resultCode, Intent data) { switch (requestCode) { case REQUEST_CHOOSER: if (resultCode == Activity.RESULT_OK) { final Uri uri = data.getData(); // Get the…
Confuser
  • 53
  • 1
  • 9
0
votes
3 answers

Error:java.lang.NoClassDefFoundError

Sorry, It's a repetitive question, but i haven't find my answer yet. To make a FileChooser in my Android application i used this. So I added 2 jar files in my Properties-> Java Build path( one of them is android-support-v4.jar and the other is a…
Sal-laS
  • 11,016
  • 25
  • 99
  • 169
1 2
3