2
我想閱讀像子目錄目錄一樣的移動內容以及Android手機中可用的文件。Android手機內容信息
我已經實現的應用得到android手機的內容如下
Intent intent = new Intent();
intent.setAction(Intent.ACTION_PICK);
// Browse in the following folder.
Uri startDir = Uri.parse(Environment.getExternalStorageDirectory().getAbsolutePath());
// Files and directories
intent.setDataAndType(startDir, "vnd.android.cursor.dir/lysesoft.andexplorer.file");
我能得到的目錄和文件,而無需使用andexplorer.file。或者有沒有什麼辦法讓內容android手機?