Android file manager library

Admittedly, I'm not very good at Android development. I am looking for some API that allows me to view user files without installing a separate application through intentions. Right now I found OI File Manager , but it uses intentions to make it work. Is there another file manager library for me? Preferably easy to configure and use.

+7
source share
3 answers

This is a late answer, but I recently worked on creating an Android file browser. https://github.com/mburman/Android-File-Explore

It is very simple. In fact, just one file that you will need to integrate into your application also does not use intentions.

+5
source

Why not create your own file browser using this example ?

+3
source

OpenIntent FileManager is actually open source:

https://github.com/openintents/filemanager

Licensed under the Apache version 2.0 license.

You can integrate the source code into your application.

+2
source

All Articles