Android Question Hide and show

An Schi

Well-Known Member
Licensed User
Not sure to understand as well....
....but most views have a 'visible' attribute.
So you can do something like this (pseudocode):

On button1 click
imageview1.visible = False

button2 click
imageview1.visible = True
 
Upvote 0
Top