代号为ios删除后退按钮

时间:2014-09-09 09:48:18

标签: codenameone

我删除了表单的标题,因为我不想要它。当我这样做时,iOS上的后退按钮(在安卓后退按钮上没有显示)开始显示在表单的底部。

enter image description here

我试图在StateMachine中覆盖showForm()并调用setTitle(“”),但后退按钮仍在那里。

@Override 
public Form showForm(String resourceName, Command sourceCommand) {

Form f = super.showForm(resourceName, sourceCommand);
f.setTitle("");

return f;

};

有没有办法删除该后退按钮?

1 个答案:

答案 0 :(得分:3)

那不是那样的。覆盖allowBackTo为:

protected boolean allowBackTo(String formName) {
    return false;
}