1. 程式人生 > >開發中 華為手機無法 直接 進入相簿獲取圖片解決方案

開發中 華為手機無法 直接 進入相簿獲取圖片解決方案

開發中碰到無法直接進入相簿的情況,會彈出選擇介面,而需求是要直接從相簿獲取圖片

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);
}