如何通过单击按钮的代码 ligen 调用带有 CodeName One 的已创建公式
How to call an alerady made Form with CodeNameOne with the code ligen clicking on a button
我想调用一个已经用 CodeNAmeOne 设计的表单并用
调用它
protected void onConnexion_Button1Action(Component c, ActionEvent event) {
TextField tf1 = findTextField(Display.getInstance().getCurrent());
String email = tf1.getText();
if(email.equals("client")){
Form f;
f.show();
}
但没有找到如何从设计中调用我想要的表单我可以获得组件但不是表单请我尽快得到答案
使用:
showForm("MyFormName");
这很有用:
我想调用一个已经用 CodeNAmeOne 设计的表单并用
调用它protected void onConnexion_Button1Action(Component c, ActionEvent event) {
TextField tf1 = findTextField(Display.getInstance().getCurrent());
String email = tf1.getText();
if(email.equals("client")){
Form f;
f.show();
}
但没有找到如何从设计中调用我想要的表单我可以获得组件但不是表单请我尽快得到答案
使用:
showForm("MyFormName");
这很有用: