1

Android の ListView にカスタム ヘッダーを追加しました。ヘッダーのレイアウト xml ファイルには、イメージ ボタンが含まれています。この ImageButton に OnClickListener を追加するにはどうすればよいですか

ヘッダー レイアウト ファイル

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#336699">

<ImageButton
    android:id="@+id/imageButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/add" />



</LinearLayout>

ListView をバインドするためのコード (カスタム アダプターを作成しました)

 ListView listView1 = (ListView) findViewById(R.id.listView1);
    LocationAdapter adapter = new LocationAdapter(this,R.layout.listrow,webresult);
    View header = (View)getLayoutInflater().inflate(R.layout.listheader, null);
    listView1.addHeaderView(header);
    listView1.setAdapter(adapter);
4

1 に答える 1

1

リストビューにヘッダーを追加すると、リストの要素と見なされ0ます。したがって、 を追加するのではなくonClickListener、リスト内の通常の行を追加するのと同じように行います。

    listview.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
          if(position==0) //do your stuff
        }
    });
于 2012-10-26T10:15:53.530 に答える