I want to create a picture chooser from gallery. I use code
intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTE
U can do it easier than this answers :
Uri Selected_Image_Uri = data.getData(); ImageView imageView = (ImageView) findViewById(R.id.loadedimg); imageView.setImageURI(Selected_Image_Uri);