开发中 华为手机无法 直接 进入相册获取图片解决方案

开发中碰到无法直接进入相册的情况,会弹出选择界面,而需求是要直接从相册获取图片

public void localImage(int code) {
Intent intent;
if (Build.VERSION.SDK_INT < 19) {
intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
} else {
intent = new Intent(
Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
}
startActivityForResult(intent, code);
}

你可能感兴趣的:(优化)