リストビューには1つの問題があります。リストビューの 1 つの項目を (タッチで) クリックしたときに認識してみます。setOnItemClickListener を試してみましたが、キーボードでしか機能しません。
私に何ができる?悪いことは何ですか?
編集: ListActivity を使用します。onListItemClickを使用しますが、マウスでAVDをクリックすると機能しません。
編集 2: TextView と ImageView を含むカスタム Listview を使用します。
<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>