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.
create array of holders
hope you have idea about ViewHolders.. and finally in your activity find the view by the following code and set imageview
hope it helps.