适用于View Group Android的Clicklistener

时间:2015-05-20 13:29:04

标签: android android-listview android-viewgroup

我正在开发Android应用程序,我在其中使用ViewGroup在列表视图中显示我的页脚。现在我想为该视图组创建一个侦听器事件,因此用户可以按下该页脚。下面给出了制作该页脚和视图组的代码以及xml。

ViewGroup footer = (ViewGroup) getLayoutInflater().inflate(R.layout.footer_view, mListView, false);
                    View header = getLayoutInflater().inflate(R.layout.footer_view, null);
                    Button headerButton = (Button)header.findViewById(R.id.footerRefreshBtn);
                    mListView.addFooterView(footer);

                    headerButton.setOnClickListener(new View.OnClickListener() {
                         @Override
                         public void onClick(View v) {
                             Toast.makeText(context, "I am clicked", Toast.LENGTH_LONG).show();
                         }
                    });
// It is not showing toast message on click.

页脚XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clickable="true"
    android:orientation="vertical" >

<Button
    android:id="@+id/footerRefreshBtn"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:layout_gravity="center_horizontal"
    android:text="Refresh Button"
    android:textColor="@color/white"
    android:background="@color/gray" />

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

我无法找到setOnClickListener到页脚的方法,但我发现了一个不同的解决方案。我想你可以使用它,只需找到footerRefreshBtn并在添加页脚视图之前或之后设置Button OnClickListener。两种方式都有效。

    LayoutInflater inflater = getLayoutInflater();
    ViewGroup footer = (ViewGroup) inflater.inflate(R.layout.footer, mListView, false);

    mListView.addFooterView(footer, null, false);

    mListView.setAdapter(mAdapter);

    Button footerRefreshBtn = (Button) footer.findViewById(R.id.footerRefreshBtn);

    footerRefreshBtn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Toast.makeText(MainActivity.this, "I am clicked", Toast.LENGTH_LONG).show();
        }
    });

这样,您只需分配Button的onClick事件。

然而,如果您仍想将onClickListener设置为整个页脚,则可以使用上面提到的方法获取页脚布局并将onClickListener设置为此布局。