I’ve used this file list for my new Android app:
http://android-er.blogspot.com/2010/01/implement-simple-file-explorer-in.html
But the problem is that after I’ve browsed through the folders and then pressing the back-button of my phone, the app is closing instead of going to the previous folder.
(because it’s still on the same activity, only some variables are changed)
Is there a possibility to fix this file browser that I can use the back-button without creating multiple activities?
Thank you!
You can override onBackPressed in your activity and do whatever you need there to go to a previous directory.