Do I need to initialize everything before I use it in basic4android?
Dim lbl as label
Dim lv1 as listview
lbl.initialize()
lv1.initialize()
lbl1.text = "Hello world!"
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.
Only if you are creating the layout programmatically. If you create it with the designer you do not need to initialize the views.
Another case where you do not need to initialize is when you reference an already initialized view: