0

リストビューには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>
4

1 に答える 1

0

aListActivityを使用すると、 onListItemClick (ListView l, View v, int position, long id)を使用できます。これは、 onListItemClick (ListView l, View v, int position, long id) を使用しても機能ListFragmentます

ListAdapter(例: )の実装がある場合はCursorAdapter、独自の要素を目的の要素に設定View.OnClickListenerできonBind()ますView

于 2012-12-04T08:43:55.137 に答える