我在android中为ListView添加了一个自定义标题。 Header的布局xml文件包含一个Image按钮。如何将OnClickListener添加到此ImageButton
标题布局文件
<?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);
答案 0 :(得分:1)
当您向listview添加标题时,它会被视为列表的元素0
。所以你不要添加onClickListener
,而是像列表中的常规行那样添加它:
listview.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
if(position==0) //do your stuff
}
});