9

I am admittedly not experienced in developing for android. I am looking for some API that lets me browse the users files, without installing a separate app via intents. Right now I have found the OI File Manager, but that uses intents to get it's work done. Is there another file manager library available for me to use? Preferably one that is easy to set-up and use.

Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201

3 Answers3

8

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

Its really straightforward. Essentially its just 1 file that you would need to integrate into your application - doesn't use intents either.

Manish Burman
  • 3,069
  • 2
  • 30
  • 35
3

Why don't you create your own filebrowser using this example?

THelper
  • 15,333
  • 6
  • 64
  • 104
  • If you read the OP, I explain why I don't want to. – Richard J. Ross III Jun 14 '11 at 17:35
  • I understand that you are looking for a library that doesn't use intents, but I think you have to accept there aren't any publicly available. So I was just pointing you to the best next thing. It's not very difficult to create a library yourself from this example (or to call an existing library via intents for that matter). – THelper Jun 15 '11 at 07:25
  • I have ditched the project, and won't be developing for android because of this and some other limitations. But I will accept your answer, so people don't keep answering it. – Richard J. Ross III Jun 15 '11 at 12:36
2

OpenIntent's FileManager is in fact open source:

https://github.com/openintents/filemanager

It is licensed under Apache License, Version 2.0.

You can integrate its source code in your application.

leesei
  • 6,020
  • 2
  • 29
  • 51