jayel Active Member Licensed User Longtime User Oct 4, 2013 #1 Hello, How can I clear the content in an imageview? tried : ImageView1.Invalidate but it don't work ! Greets, John
Hello, How can I clear the content in an imageview? tried : ImageView1.Invalidate but it don't work ! Greets, John
NJDude Expert Licensed User Longtime User Oct 4, 2013 #2 Invalidate is to REDRAW, to clear you could just make it invisible B4X: ImageView1.Visible = False Or load a null like this B4X: ImageView1.SetBackgroundImage(Null) Upvote 0
Invalidate is to REDRAW, to clear you could just make it invisible B4X: ImageView1.Visible = False Or load a null like this B4X: ImageView1.SetBackgroundImage(Null)