- browse files from the specified directory.
- click the file to open.
- easily integrated into your APK applications.
- copy res and src to your Android project directory.
- how to start it?
Intent intent = new Intent(this, FileBrowserActivity.class);
intent.putExtra("start_mode", "browser");
intent.putExtra("root_dir", "/sdcard/");
startActivity(intent);
- add 'start_mode' equals "select_dir" and "select_file".