I have an Imageview inside and Expandable Listview:
This line of code gets the applicable panel in the ListView
This line of code gets the ImageView in the expandable listview
How can I force a redraw (Invalidate) of the bitmap loaded into the Imageview? There seems to be no Invalidate method to force a redraw?
Thanks
JS
This line of code gets the applicable panel in the ListView
B4X:
Dim pnlItems As B4XView = clv1.GetPanel(index).GetView(1)
This line of code gets the ImageView in the expandable listview
B4X:
pnlItems.GetView(0).SetBitmap(lastPicture)
How can I force a redraw (Invalidate) of the bitmap loaded into the Imageview? There seems to be no Invalidate method to force a redraw?
Thanks
JS