android
[android] image 갤러리(Gallery) intent 오픈
열공_중
2017. 1. 12. 15:18
private static int REQUEST_CODE = 1;
Intent intent = new Intent();
intent.setType("image*//*");
intent.setAction(Intent.ACTION_PICK);
startActivityForResult(Intent.createChooser(intent, "Select Image"), REQUEST_CODE);