I added a button in layout and obtained its reference in the activity:
Button button1=(Button)findViewById(R.id.button1);
button1.setVisiblity(View.Visible);
Program crashes with this code. How do I set its visibility correctly?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Whats the error? it should be
View.VISIBLE(uppercase).If you have a null pointer exception at that point, its probably because its not finding the view in your layout.