0

我正在开发一个 Android 3.1 应用程序。

我有一个ListView具有这种布局的项目:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <CheckBox
        android:id="@+id/itemCheckBox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>

这是带有list的活动布局:

<?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:orientation="vertical" >
    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="629dp" >
    </ListView>
    <Button
        android:id="@+id/downloadFormsButton"
        android:enabled="false"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:text="@string/download_forms_button" />
    <TextView
        android:id="@+id/formErrorMsg"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="10dp"
        android:textSize="16sp" >
    </TextView>
</LinearLayout>

downloadFormsButton当用户选择一个或多个列表项的复选框时如何启用?

4

1 回答 1

1

为您的复选框实现一个 onCheckedChangeListener 并管理您的适配器中的选中项目列表。每当检查状态发生更改时,检查您的检查项目列表是否为空并基于此启用/禁用您的按钮。

checkbox.setOnCheckedChangeListener(new OnCheckedChangeListener() {

            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
            {
                if (isChecked)
                    checkedItems.add(itemId);
                else
                    checkedItems.remove(itemId);

                downloadFormsButton.setEnabled(checkedItems.size() > 0); //sets button enabled = true if size is greater than 0.

            }
        });
于 2012-04-16T14:17:03.433 回答