我删除了表单的标题,因为我不想要它。当我这样做时,iOS上的后退按钮(在安卓后退按钮上没有显示)开始显示在表单的底部。
我试图在StateMachine中覆盖showForm()并调用setTitle(“”),但后退按钮仍在那里。
@Override
public Form showForm(String resourceName, Command sourceCommand) {
Form f = super.showForm(resourceName, sourceCommand);
f.setTitle("");
return f;
};
有没有办法删除该后退按钮?
答案 0 :(得分:3)
那不是那样的。覆盖allowBackTo为:
protected boolean allowBackTo(String formName) {
return false;
}