在我的 android 应用程序中,我允许用户使用以下代码从图库或其他来源中选择图片:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(
intent, "Select Picture"), PICTURE_CHOOSER);
当用户单击按钮时,会出现一个对话框,用户可以在其中选择应用程序来加载图像(fe、文件管理器或图库)。我可以在该对话框中添加一个额外的按钮,以便用户能够从相机捕获图像吗?