I’m trying to create a to do list in android, where each item is a checkbox. I want to be able to programmatically update the list of items as the user (me) adds a new task. Any tips for how I could accomplish this?
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.
As suggested notepad tutorial would be good here is a few design tips:
your case checkbox
changed and update ui accordingly
Note : do not update UI from background thread just use UI thread for this
Note 2 : In lists android have row recycle so when list expend the screen width check if checkboxes hold their states.
Hope it helps.