Skip to content Skip to sidebar Skip to footer

Showing User A Particular Folder In Sd Card And Allow To Select File

In my game, I save files(.xml) to a folder in sd card when user save a particular mode. Now while loading saved files, I need to show user all saved files. I want to show them as y

Solution 1:

There is no built in system app for this. The theory is to not expose the users to the file system. If you do want to do it and not code your own implementation then you can use OpenIntents and there OI File Manager there is of course the proboelm that the user may not have the app installed so you have to be prepared to prompt them to install it. Your user may not apreciate this.

I do use this approach in my app IpBike. I take my users to have some brains and be able to cope with a file system, and file import and export is an intergral feature.

Post a Comment for "Showing User A Particular Folder In Sd Card And Allow To Select File"