标签: android
我正在构建一个具有图像按钮的简单应用程序,单击时应启动图库用途,并允许用户选择图像表单库。 以下是启动图库意图的代码:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("Image/*"); startActivityForResult(intent,GALLERY_REQUEST);
问题是选择图像的选项变得模糊,我无法选择它。