-1

ViewGroup を使用してリストビューにフッターを表示する Android アプリケーションに取り組んでいます。そのビュー グループのリスナー イベントを作成して、ユーザーがそのフッターを押すことができるようにします。そのフッターとビュー グループを作成するための私のコードを、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>
4

1 に答える 1

1

setOnClickListenerフッターへの方法がわかりませんでしたが、別の解決策を見つけました。フッタービューを追加する前または後にfooterRefreshBtnボタンのみを見つけて設定するだけです。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();
        }
    });

このようにして、ボタンの onClick イベントのみを割り当てます。

それにもかかわらず、onClickListener をフッター全体に設定したい場合は、上記の方法を使用して、フッターのレイアウトを取得し、このレイアウトに onClickListener を設定できます。

于 2015-05-20T14:36:23.730 に答える