Re: [android-developers] CheckedTextView won't check.

2011-09-30 Thread Mark Murphy
Here is a sample project demonstrating a checklist: https://github.com/commonsguy/cw-android/tree/master/Selection/Checklist To check items in the CHOICE_MODE_MULTIPLE, you do not call setChecked() on the CheckedTextView. Call setItemChecked() on the ListView. On Thu, Sep 29, 2011 at 9:03 PM,

[android-developers] CheckedTextView won't check.

2011-09-29 Thread Nathan
What am I doing wrong? My adapter does this. @Override public View getView(int paramInt, View paramView, ViewGroup paramViewGroup) { CheckedTextView view; if(paramView==null) { LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); view =