Home > OS >  How to close ImageView with back button in Android Studio?
How to close ImageView with back button in Android Studio?

Time:08-13

I want to close imageview with back button. when i'm pressing back button its going to the mainactivity by default. i want same activity but imageview closed.

CodePudding user response:

you need to press this tab(<) and then press (/) and Image view will be closed

CodePudding user response:

`imageView.gone();

or

imageView.inVisible();`

  • Related