我希望在下载完成后在我的DownloadService
课程中运行以下代码:
Intent localIntent = new Intent("android.intent.action.ATTACH_DATA");
localIntent.setDataAndType(Uri.fromFile(new File(imagePath)), "image/jpg");
localIntent.putExtra("mimeType", "image/jpg");
localIntent.addCategory(Intent.CATEGORY_DEFAULT);
FullImage.this.startActivityForResult(Intent.createChooser(localIntent, "set as"), 200);
你有什么机会解决我的问题?