((Button) findViewById(R.id.Button01)).setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
// startActivityForResult(Intent.createChooser(intent,
// "Select Picture"), SELECT_PICTURE);
Log.d("Gallery displaying....!",""+intent);
final File imagesFolder = new File(Environment.getExternalStorageDirectory(), "Safe");
imagesFolder.mkdirs(); // <----
startActivityForResult(intent,0);
}
});`
ギャラリーから画像を選択して SD カードに保存しますが、実行時に画像アセット フォルダーを保存する必要があります。