1

我有一个用户活动,有一个名为选择日期的按钮,当用户单击该按钮时,它会显示一个用于选择星期几的警报对话框

现在我想要当用户选择多天时

然后先前选中的复选框将显示在选中位置并保持未选中位置

4

2 回答 2

2

是一个不错的库,我将它用于我的项目。 在此处输入图像描述

步骤1:

将这些行添加到您的 build.gradle 文件中

  dependencies {
compile 'com.afollestad:material-dialogs:0.7.7.0'
}

repositories 
maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
}

第 2 步:在要显示对话框的代码中添加:

new MaterialDialog.Builder(this)
    .title(R.string.title)
    .items(R.array.items)
    .itemsCallbackMultiChoice(null, new MaterialDialog.ListCallbackMultiChoice() {
        @Override
        public boolean onSelection(MaterialDialog dialog, Integer[] which, CharSequence[] text) {
            /**
             * If you use alwaysCallMultiChoiceCallback(), which is discussed below,
             * returning false here won't allow the newly selected check box to actually be selected.
             * See the limited multi choice dialog example in the sample project for details.
             **/
             return true;
        }
    })
    .positiveText(R.string.choose)
    .show();

items(R.array.items) - 应该是资源中的字符串值数组。

PS 请阅读这个库的文档,很清楚很简单)

在此处输入图像描述

于 2015-07-23T09:58:44.580 回答
0

也许你可以看看Android标准。对话框

它还向您展示了如何创建自定义对话框。他们有一个带有复选框的列表示例

于 2015-07-23T10:04:13.853 回答