如何创建一个警报对话框以根据时间隐藏其选择项

时间:2018-12-29 10:42:55

标签: java android android-alertdialog

我在android中实现了singleChoiceItems警报对话框,但我想进行检查,以使数组中的某些项目不会根据时间显示。

这是否可能,或者我可以使用任何方法代替警报对话框吗?

1 个答案:

答案 0 :(得分:0)

这是一个简单的示例,如果“ true”,如何检查时间并更改项目。 对话框是一个对象,您可以通过在不同位置调用biulder。*来调用其属性。

String[] colurs ={"Red","Blue","Green"};

AlertDialog.Builder builder = new AlertDialog.Builder(this);

builder.setTitle("Pick Colour")
        .setItems(colurs, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                // The 'which' argument contains the index position
                // of the selected item
            }
        });
if(currentThreadTimeMillis()>1000){
    colurs[0]="New1";
    colurs[1]="New2";

    builder.setTitle("Pick Colour").setItems(colurs, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            // The 'which' argument contains the index position
            // of the selected item
        }
    });
}
builder.create();
builder.show();