Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to check if an View within a scrollview is currently visible in Android? I am not checking if it is focused on yet, but if it is currently being displayed on screen? Is there a method on View that will tell me if the view is currently visible?

Thanks

share|improve this question
Look at this link - stackoverflow.com/a/4629167/614807 – Chirag Raval Dec 26 '12 at 10:47
@user1847544 Please see my answer, it will solve your problem. – Dipak Keshariya Dec 28 '12 at 4:49

2 Answers

View.getVisibility() gets the visibility, byt it's not a simple true/false. A view can have its visibility set to one of three things.

  • View.VISIBLE (0): the view is visible.

  • View.INVISIBLE (1): The view is invisible, but it still takes up space for layout purposes.

  • View.GONE (2): the view is gone. Completely hidden, as if the view had not been added

 if (yourView.getVisibility() == View.VISIBLE) {
        // Its visible
    } else {
        // Either gone or invisible
    }
share|improve this answer

Please use following code to check visibility of the button, it will solve your problem.

Button mBtnLogin = (Button) findViewById(R.id.mBtnLogin);

if (mBtnLogin.getVisibility()==0) {
    System.out.println("Visible");
} else{
    System.out.println("Invisible");
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.