Share
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.
If you are binding that view to data in a SQLite database, I would extend CursorAdapter. It’s pretty easy as you only have to override bindView() and newView(). In newView() you need to use a LayoutInflater to inflate the view, and in bindView(), you define the views as objects and bind your data to them! Ask if you need some example code and I’ll dig some up from an old project!