Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a specific View/Widget available for browsing files on the device? Or is there another solution that has become accepted? Searching has yielded very little useful information for me. Thanks in advance!

share|improve this question

2 Answers

up vote 0 down vote accepted

Unfortunately there's no special View/widget for browsing files. But it's not very difficult to write it yourself. Googling would find number of public sources/intents for file browsing. General idea is simple: just use File.listFiles() and fill appropriate ListView keeping in mind SD card root and phone FS root.

share|improve this answer
Thanks. That's what I imagined the answer to be. – Lunchbox Jan 13 '11 at 15:25

you should get the basic idea from my answer here Choose File Dialog

share|improve this answer
Thanks for the example! – Lunchbox Jan 13 '11 at 15:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.