I am using a listview with mulitple list items. Each list items contain a button now i am able to click the buttons but i lost the listitem click. This happens whenever i add a clickable component in with listitems. I have used custom adapter to achieve multiple components in listview. I need both listitem click and button click how can i make it possible.

Here is my code(Click me)

link|improve this question

69% accept rate
how u create xml code for this – RajaReddy P Oct 21 '11 at 10:20
Hey one simple answer to it is that set focusable property of button to false...try it it will work... – Maneesh Oct 21 '11 at 10:26
feedback

2 Answers

Hi arun use this code I hope It was help you.

ListView lv1 = getListView();
    lv1.setTextFilterEnabled(true);
    lv1.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
       MySlammerCustomAdapter adapter1 = (MySlammerCustomAdapter) parent.getAdapter();
       String slambook_id = adapter1.getItem(position).toString();
       // Toast.makeText(getApplicationContext(), user_id, Toast.LENGTH_SHORT).show();
       finish();
       intent = new Intent(MySlammerActivity.this, SlamBookInfoViewActivity.class);
       intent.putExtra("KeyUser_id", slambook_id);
       startActivity(intent);
    }
    });
link|improve this answer
feedback

If any element in the list item layout is focusable then it is not possible to click both on list item and that button. Then list item click will not happen. To make both work then make sure that all the elements in the list item layout should not be focusable. So if you need to set the property of the button contained by the list item to be false.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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