0
我正在創建一個應用程序,在該應用程序中,我使用自定義行佈局顯示了使用SimpleCursorAdapter填充的ListView中數據庫的信息。我也處理ListView的ItemClickListner。ListView自定義行無法完全點擊
自定義行的我的佈局如下:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:focusableInTouchMode="true"
android:padding="10dip" >
<ImageView android:id="@+id/imageButtonAccount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:src="@drawable/icon_account" />
<TextView
android:id="@+id/TextViewAccount"
style="@style/textView_normal_bold_style"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="16dip"
android:focusable="false"
android:focusableInTouchMode="false"
android:textSize="@dimen/text_size_large" />
</LinearLayout>
但我有一個問題,它遵循:
當我點擊上面的ListView行的內容,只進行點擊事件,但我想要的是當我點擊任何一個地方,然後點擊行動應該執行。但它並不像這樣。
你做你行的寬度,以填補父? – rajpara