I set sameting to invisible like this on Android:
myImageView.setVisibility(View.INVISIBLE);
And then visible like this:
myImageView.setVisibility(View.VISIBLE);
I don't know if myImageView is visible or not now, how can I check it like this:
if (IF myImageView IS VISIBLE) {
Do something
} else {
Do something else
}
How can I do that? What do I have to write within the brackets?