Custom list clicking with checkboxes in Android - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:30:47Z http://stackoverflow.com/feeds/question/895341 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android 1 Custom list clicking with checkboxes in Android Tom Martin 2009-05-21T21:43:30Z 2009-11-28T14:05:07Z <p>I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom transformation of the data.</p> <p>I want to add a checkbox to each row in the list so I've changed the view and added a CheckBox with gravity right.</p> <p>Adding the checkbox has removed the ability to click on the items. The onListItemClick method I was overriding in ListActivity is no longer called when you press on a list item. Removing the checkbox fixes this. Why is this?</p> <p>Also, how can I set up the list so that it continues to perform my required functionality if the main part of the list item is clicked but have additional functionality when the checkbox in the item is checked? Will setting a onCheckedChangedListener work or is the same view instance reused for each item in the list?</p> http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android/895602#895602 1 Answer by Tom Martin for Custom list clicking with checkboxes in Android Tom Martin 2009-05-21T22:33:17Z 2009-05-21T22:33:17Z <p>Looks like <code>SimpleCursorAdapter</code> is too primitive for what I wanted to achieve. I've switched to implementing <code>CursorAdapter</code> and returning a new view using the <code>LayoutInflater</code> in my implementation of the <code>newView</code> method.</p> <pre><code> public View newView(Context context, Cursor cursor, ViewGroup parent) { return LayoutInflater.from(context).inflate(R.layout.alarm_row, parent, false); } </code></pre> <p>In bindView I then set a custom <code>OnClickListener</code> to my main <code>LinearLayout</code> and then another <code>OnCheckedChangeListener</code> to the <code>CheckBox</code>.</p> <p>For all this to look right I had to set the <code>LinearLayout</code>'s background to android's menuitem drawable:</p> <pre><code>android:background="@android:drawable/menuitem_background" </code></pre> http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android/1597329#1597329 0 Answer by Dawson for Custom list clicking with checkboxes in Android Dawson 2009-10-20T21:10:44Z 2009-10-20T21:10:44Z <p>Any chance I could see the source for this? I'm having problems setting view content from the cursor.</p> <p>Cheers</p> http://stackoverflow.com/questions/895341/custom-list-clicking-with-checkboxes-in-android/1812586#1812586 0 Answer by Josef for Custom list clicking with checkboxes in Android Josef 2009-11-28T14:05:07Z 2009-11-28T14:05:07Z <p>As explained <a href="http://stackoverflow.com/questions/1121192/android-custom-listview-unable-to-click-on-items">here</a>, the click listener only works if no other view is <code>focusable</code>. Setting your <code>CheckBox</code> to <code>focusable="false"</code> should do the trick:</p> <pre><code>&lt;CheckBox android:focusable="false" /&gt; </code></pre>