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

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

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);
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章