我在android中实现了singleChoiceItems警报对话框,但我想进行检查,以使数组中的某些项目不会根据时间显示。
这是否可能,或者我可以使用任何方法代替警报对话框吗?
答案 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();