1. 程式人生 > >listview中的item增加事件

listview中的item增加事件

ListView的setOnItemClickListener事件和ListView中Item中包含的子控制元件(比如button)的click事件共存的解決辦法:
在ListView的item的xml配置檔案的根節點新增屬性
android:descendantFocusability="blocksDescendants",
並且,在要新增事件的子控制元件(如button)的屬性裡新增android:focusable="false"
另外,注意:有時現成的幾個adapter滿足不了要求,此時就需要繼承自BaseAdapter。

下面我是程式中的部分程式碼,該佈局檔案時listview中的item的佈局,

listview_listitem_layout.xml 程式碼如下:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:descendantFocusability="blocksDescendants"

style="@style/ListItem">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone" />
<ImageView
android:layout_width="45dip"
android:layout_height="45dip"
android:layout_gravity="center"
android:layout_alignParentLeft="true"
android:background="@drawable/imageview_background"
android:scaleType="fitXY" />
<Button
android:layout_width="@dimen/btn_attention_width"
android:layout_height="@dimen/btn_attention_height"
android:layout_alignParentRight="true"
android:background="@drawable/button_selector_gradient"
android:text="關注"
android:focusable="false"/>

</RelativeLayout>