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?