How To Display Selected Gallery Image In Imageview In Android
I have image view and gallery in the activity.I am getting the image url from WebService.When user select image in gallery.I have to show correspondace image in ImageView can anyb
Solution 1:
To let the user select a image from gallery you can use ::
Intentintent=newIntent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Choose Picture"), requestCode);
once the user selects an Image you can get the URI of the image from onActivityResult(Intent intent) method using uri = intent.getData()
, and set this URI to your image view. do imageView.setImageURI(uri)
.
Solution 2:
gallery.setOnItemClickListener(newOnItemClickListener(){
@OverridepublicvoidonItemClick(AdapterView<?> parent, View view, int position,long id) {
Toast.makeText(YourActivity.this,""+position + " Clicked", Toast.LENGTH_LONG).show();
imageview.setImageDrawable(bitmap_which_is_displayed);//may be from any array or list//or
imageview.setImageBitmap(drawable_which_is_displayed);//may be from any array or list
}
});
Solution 3:
You can set onItemClick
event for Gallery
and pass the id of selected picture to another ImageView
or ImageSwitcher
. In API demo there's a sample
and you can check another tutorial here
Post a Comment for "How To Display Selected Gallery Image In Imageview In Android"