Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have list with two buttons on it.

 <?xml version="1.0" encoding="utf-8"?>
<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android" 
       android:paddingTop="2dip"
       android:paddingBottom="2dip"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:minHeight="?android:attr/listPreferredItemHeight"
       android:mode="twoLine"
    >

        <Button
                android:id="@+id/erase"
                android:layout_marginLeft="6dip"
                android:layout_marginTop="6dip"
                android:layout_width="40dip"
                android:layout_height="40dip"
                android:background="@drawable/closebtn"
                android:focusable="false"
                android:focusableInTouchMode="false"
            />
           <ImageButton android:id="@+id/soundf"
                android:layout_width="40dip"
                android:layout_height="40dip"
                android:layout_below="@+id/erase"
                android:layout_alignLeft="@+id/erase"
                android:background="@drawable/soundinv"
                android:focusable="false"
                android:focusableInTouchMode="false"
                /> 
           <TextView android:id="@+id/texxt1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_toRightOf="@+id/erase"
                android:layout_alignTop="@+id/erase"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:textColor="#CC0"
           />

           <TextView android:id="@+id/texxt2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/texxt1"
                android:layout_alignLeft="@+id/texxt1"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:textColor="#FFF"
           />
   </TwoLineListItem>

my Layout contain listview

<?xml version="1.0" encoding="utf-8"?>

    <!-- Put all your application views here, such as buttons, textviews, edittexts and so on -->
    <AutoCompleteTextView android:id="@+id/auto"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:singleLine="true" 
        android:textColor="#000"
        android:completionThreshold="1"/>

    <LinearLayout android:orientation="horizontal"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
        <Button android:id="@+id/left" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:text="English to Indonesia"
            android:layout_weight="1" 
            android:background="@drawable/chbutt" />
        <Button android:id="@+id/right" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:text="Indonesia to English"
            android:layout_weight="1" 
            android:background="@drawable/chbutt" />
    </LinearLayout>

    <ListView android:layout_height="wrap_content"
        android:layout_width="fill_parent" 
        android:id="@+id/history"
        android:headerDividersEnabled="false"
        android:footerDividersEnabled="false"
        android:isScrollContainer="false" 
    />
</LinearLayout>

<!-- This is ads place -->
<LinearLayout android:layout_width="fill_parent"
              android:id="@+id/ad_layout"
              android:layout_height="wrap_content"
              android:gravity="bottom"
              android:layout_alignParentBottom="true">
<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    ads:adSize="BANNER"
    ads:adUnitId="xxxxxxxxx"
/>
</LinearLayout>

When I want to click a list item it doesn't work, but my button is still clickable... Do you guys have any idea, how I can make all buttons include the entire list item to be clickable?

share|improve this question
can you provide you xml where you have defined listview – Sunil Kumar Sahoo May 31 '11 at 7:32
Duplicate of stackoverflow.com/questions/2322390/… – Flo May 31 '11 at 7:36
hi @Deepak, you can see it now – BolbazarMarme May 31 '11 at 9:17

2 Answers

For future help about the same topic:

For Buttons, Checkboxs and ImageViews:

android:focusable="false"

Now both, buttons and rows of listview are clickable

For ImageButtons, you have to set focusable while running, because the constructor of ImageButtons sets it to true. I recomend you using a ImageView instead of a ImageButton.

share|improve this answer
This works. Thank u!:) – Sandra Mar 30 '12 at 11:08
1  
I already did, when posting the comment :) – Sandra Apr 5 '12 at 9:17
then thank you very much =] – Fabricio PH Apr 9 '12 at 16:16
1  
I've been agonizing over this issue for some time. Thank you very much sir. – Michael Herbig Oct 9 '12 at 19:56
Thanks, this topic used to give me a couple of headaches! Its a little bit trick. – Fabricio PH Oct 19 '12 at 14:38
show 3 more comments
<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout  android:id="@+id/rel1" android:layout_width="fill_parent"
        android:layout_height="wrap_content">

<Button
        android:id="@+id/erase"
        android:layout_marginLeft="6dip"
        android:layout_marginTop="6dip"
        android:layout_width="40dip"
        android:layout_height="40dip"
        android:background="@drawable/closebtn"
        android:focusable="false"
        android:focusableInTouchMode="false"
    />
   <ImageButton android:id="@+id/soundf"
        android:layout_width="40dip"
        android:layout_height="40dip"
        android:layout_below="@+id/erase"
        android:layout_alignLeft="@+id/erase"
        android:background="@drawable/soundinv"
        android:focusable="false"
        android:focusableInTouchMode="false"
        /> 
   <TextView android:id="@+id/texxt1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/erase"
        android:layout_alignTop="@+id/erase"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#CC0"
   />

   <TextView android:id="@+id/texxt2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/texxt1"
        android:layout_alignLeft="@+id/texxt1"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="#FFF"
   />
</RelativeLayout>

now you can also given click event to relative layout.

share|improve this answer
hey, check my xml again it's TwoLineListItem, and I found nothing wrong with it – BolbazarMarme May 31 '11 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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