刚开始使用CodeName One和带有GUI构建器的hello world项目。 我添加了一个动作监听器(通过GUI Builder)并在其中添加一行以显示一个对话框:
protected void onMain_ButtonAction(Component c, ActionEvent event) {
Dialog.show("Hello", "Hi there!", "OK", null);
}
然后我点击"模拟设备",手机确实显示,我可以点击按钮但没有弹出对话框?任何提示?