After setting the myView
to invisible
:
public void onClick(View arg0) {
myView.setVisibility(View.INVISIBLE); }
can i somehow ask the current state of myView's visibility via some built-in-method? something like "myView.isVisible();"
i checked android.developer, but didn't get an answer there. thanks for the help :)