I want to display a button inside the listview. The goal should be to click on the listview line or on the button.

Click on the line it shows more info. Click on the button it shows at the bottom more buttons.

The same as the GMAIL app.

On the right there is a checkbox and after clicking on the checkbox at the bottom the button bar appears.

My problem is after inserting the button into the listview, the button is not clickable. If i add the to the LinearLayout from the button llButton.setClickable it works, BUT only the button. The ListView itself dont react on clicks anymore!

I have tried this example: http://stackoverflow.com/questions/1709166/android-listview-elements-with-multiple-clickable-buttons

The same issue as above...

link|improve this question

62% accept rate
Did you try using the Context Menu for the listview? – primpop Jun 15 '10 at 14:38
Yes i have a context menu, but i want to add a checkbox too. – chrisonline Jun 17 '10 at 10:33
Maybe my answer on this question may help. – tidbeck Dec 1 '11 at 14:34
feedback

3 Answers

up vote 1 down vote accepted

If you r using custom Adapter the Button click inside List View will not work so you try to use the following code to Check for OnItemClickListener..

    listId.setOnItemClickListener(new AdapterView.OnItemClickListener() {
       public void onItemClick(AdapterView<?> list, View v, int pos, long id) {
          -------Your Code----          
       }
    });
link|improve this answer
feedback

this might help

link|improve this answer
feedback

Just to make this clear – and no one seems to have said something this simple – whilst one is not allowed to have a focusable button work in conjunction with the list view, there is a much simpler solution for this.

The accepted answer is a given - you should always do that when setting the click listener for list items, so that is silly that OP didn't know that.

If you are using an XML layout as your list item, simply set the button to have the following attribute and it will cause the list item to be clickable as well:

android:focusable="false"

link|improve this answer
Thank you, it fixed a problem I was facing! – Yosi199 May 20 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.