我正在研究可以扫描特定文件夹的代码,拍照时,我使用了以下代码:
Intent intent = new Intent();
intent.setType("image/*");
//intent.setAction(Intent.ACTION_GET_CONTENT);
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://sdcard/ghost/" + Environment.getExternalStorageDirectory())));
startActivityForResult(
Intent.createChooser(intent, "Select Picture"), 0);
它工作正常,但是当我退出应用程序并再次启动应用程序时,没有执行扫描,可能是什么问题?
需要帮助!!!