I have a bitmap on Activity and I want to set that bitmap to an ImageView in a group in an ExpandableListView.
How can I do this?
Bitmap bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(uri)); (Expandablelistview.imageview).setImageBitmap(bitmap);
I need a particular group of my ExpandableListView and then set that ImageView there.
I need this View reference in the Activity.