0

我在 ListView Header 中有两个按钮,我想检测按钮是从标题中单击的。我该怎么做..这是我的代码:

header_list.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/b1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/b2" />
</LinearLayout>

在java代码中我已经这样做了

LayoutInflater inflater = LayoutInflater.from(this);
View mTop = inflater.inflate(R.layout.header_list, null);
listview.addHeaderView(mTop);
4

2 回答 2

3

您可以将侦听器添加到这些按钮。

btnB1 = (Button) mTop.findViewById(R.id.b1);
btnB1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // Your code.

        }
    })
于 2013-11-05T08:43:00.810 回答
0
LayoutInflater inflater = LayoutInflater.from(this);
View mTop = inflater.inflate(R.layout.header_list, null);
listview.addHeaderView(mTop);
Button _btnb1 = (Button) mTop.findViewById(R.id.b1);
_btnb1.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        // Your code.

    }
});

Button _btnb2 = (Button) mTop.findViewById(R.id.b2);
_btnb2.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        // Your code.

    }
});

试试这个代码

于 2013-11-05T08:53:34.863 回答