newView()およびbindView()をオーバーライドするカスタムCursorAdapterを使用して、カスタムListViewを表示しています。カスタムCursorAdapterを使用してリストビューの行をクリック可能にする
Iは、行レイアウトXMLファイルを膨張及びbindView(に引数として渡された図)にOnClickListenerを結合しています:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="10px"
android:paddingBottom="10px"
android:paddingLeft="10px"
android:paddingRight="10px"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
>
<TextView android:id="@+id/episode_title_text" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textSize="20px"
android:layout_weight="1"
/>
</RelativeLayout>
:私はまた、行XMLで相対レイアウトを使用してい
public void bindView(View view, Context context, Cursor cursor) {
view.setOnClickListener(new OnClickListener() { }
...
}
私の問題は、リスト内の項目をクリックしても何も起こらず、OnClickListener.onClick()が呼び出されないことです。
問題の原因が考えられますか?
ありがとうございます。
良い仕事をして動作しません! –