0

我对 listview 有一个问题。当我单击(触摸)列表视图的一项时,我会尝试识别。我尝试使用 setOnItemClickListener,但只能使用键盘。

我能做些什么?做什么坏事?

编辑:我使用 ListActivity。并使用 onListItemClick,但是当我用鼠标单击 AVD 时,不起作用。

编辑 2:我使用自定义 Listview,其中包含 TextView 和 ImageView

 <LinearLayout android:id="@+id/lista"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <ListView android:id="@android:id/list"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content"
        android:divider="#b5b5b5"
        android:dividerHeight="3dp"
        >

    </ListView>   
  </LinearLayout>



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   >

   <TextView android:id="@+id/texto"
       android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:textSize="15dp"
   android:textStyle="bold" 
   android:gravity="left"
   android:padding="5dp"
   android:paddingBottom="5dp"
   android:text="@string/texto"
    />
    <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         >
        <ImageView 
           android:id="@+id/btn_imagen"
           android:scaleType="center"
           android:layout_width="match_parent"
           android:layout_height="150dp"
           android:src="@drawable/logo"
           android:contentDescription="@string/Imagen"/>

    </LinearLayout>
</LinearLayout>
4

1 回答 1

0

使用 aListActivity您可以使用onListItemClick (ListView l, View v, int position, long id)。这也适用于ListFragmentwith onListItemClick (ListView l, View v, int position, long id)

如果您有ListAdapter(例如CursorAdapter)的实现,则可以将自己View.OnClickListener的实现设置onBind()为所需的View元素。

于 2012-12-04T08:43:55.137 回答