我对listview有一个问题。当我在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>
答案 0 :(得分:0)
使用ListActivity
您可以使用onListItemClick (ListView l, View v, int position, long id)。这也可以使用ListFragment
和onListItemClick (ListView l, View v, int position, long id)。
如果您有ListAdapter
的实施(例如CursorAdapter
),则可以在View.OnClickListener
中将自己的onBind()
设置为所需的View
元素。