オプションを表示する警告ダイアログを表示できます。ソースコードを以下に示します。
AlertDialog.Builder getImageFrom = new AlertDialog.Builder(MainActivity.this);
getImageFrom.setTitle("Select Image");
final CharSequence[] opsChars = {"Take Picture", "Open Gallery"};
getImageFrom.setItems(opsChars, new android.content.DialogInterface.OnClickListener(){
@Override
public void onClick(DialogInterface dialog, int which) {
if(which == 0){
File file = new File( _path );
outputFileUri = Uri.fromFile( file );
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
startActivityForResult(cameraIntent, 7);
}else
if(which == 1){
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Open Gallery"), 6);
}
dialog.dismiss();
}
});
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == 6) {
Uri selectedImageUri = data.getData();
pickerImageView.setPadding(0, 0, 0, 0);
pickerImageView.setScaleType(ScaleType.FIT_XY);
System.gc();
String filepath = getPath(selectedImageUri);
File imagefile = new File(filepath);
try {
FileInputStream fis = new FileInputStream(imagefile);
BitmapFactory.Options options=new BitmapFactory.Options();
options.inPurgeable=true;
options.inSampleSize =4;
bi= BitmapFactory.decodeStream(fis,null,options);
fis.close();
Bitmap bitmapToRecycle = ((BitmapDrawable)pickerImageView.getDrawable()).getBitmap();
bitmapToRecycle.recycle();
pickerImageView.setImageBitmap(bi);
pickerImageView.setPadding(0, 0, 0, 0);
pickerImageView.setScaleType(ScaleType.FIT_XY);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
pickImageTextView.setText("");
}
else if(requestCode == 7){
Log.i("return", "#####");
BitmapFactory.Options options=new BitmapFactory.Options();
options.inPurgeable=true;
options.inSampleSize =4;
//Bitmap photo = BitmapFactory.decodeFile( _path, options );
Bitmap photo = (Bitmap) data.getExtras().get("data");
pickerImageView.setImageBitmap(photo);
pickerImageView.setPadding(0, 0, 0, 0);
pickerImageView.setScaleType(ScaleType.FIT_XY);
}
}
}