如何使用LWUIT创建弹出窗口?我想显示一个警报,该警报会在5到10秒后自动处理。如何用LWUIT做到这一点?
答案 0 :(得分:8)
使用此代码并定期显示警报。
Dialog validDialog = new Dialog("Alert");
validDialog.setScrollable(false);
validDialog.setIsScrollVisible(false);
validDialog.setTimeout(5000); // set timeout milliseconds
TextArea textArea = new TextArea("...."); //pass the alert text here
textArea.setFocusable(false);
textArea.setIsScrollVisible(false);
validDialog.addComponent(textArea);
validDialog.show(0, 100, 10, 10, true);