我对 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>