返回按钮的问题

发布于 2024-09-01 02:43:59 字数 80 浏览 7 评论 0原文

当我按下后退按钮时,会显示一个弹出屏幕,其中显示三个按钮“保存”、“丢弃”和“取消”按钮,我不希望弹出此屏幕。这可能吗?

提前致谢

when i am pressing the back button a pop screen is displayed which shows three button save, discard and cancel button i don't want this screen to be popped up. is this possible.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

青巷忧颜 2024-09-08 02:43:59

后退按钮的默认行为是保存脏屏幕的更改。重写 onClose() 方法以覆盖默认行为。

    public boolean onClose() {
        int choice = Dialog.ask(Dialog.D_YES_NO, "¿Do you want to exit?", Dialog.YES);

        if (choice == Dialog.YES) {
             //write a close() routine to exit
            close();
        }   
        return true;
    }

您返回 true 是因为您管理了 ESC 按钮按下事件。查看 Screen 类文档。

您还可以更改 ESC 按钮的默认行为,重写 keyChar 方法,如下所示:

    protected boolean keyChar(char character, int status, int time) {
        if (character == Keypad.KEY_ESCAPE) {
            onClose();
            return true;
        }
        return super.keyChar(character, status, time);
    }

close() 应该类似于:

public void close() {
    System.exit(0);
}

The default behaviour of the back button is to save changes for dirty screens. Rewrite the onClose() method to overwrite the default behaviour.

    public boolean onClose() {
        int choice = Dialog.ask(Dialog.D_YES_NO, "¿Do you want to exit?", Dialog.YES);

        if (choice == Dialog.YES) {
             //write a close() routine to exit
            close();
        }   
        return true;
    }

You return true because you managed the ESC button pressed event. Review the Screen class docs.

You can also change the default behaviour of the ESC button rewriting the keyChar method as follows:

    protected boolean keyChar(char character, int status, int time) {
        if (character == Keypad.KEY_ESCAPE) {
            onClose();
            return true;
        }
        return super.keyChar(character, status, time);
    }

close() should be somenthing like:

public void close() {
    System.exit(0);
}
计㈡愣 2024-09-08 02:43:59

重写 onSavePrompt 方法。然后那个屏幕就不会出现。实际上,只有当屏幕上的内容发生更改时,才会出现该弹出屏幕。因此它会要求您采取适当的行动。

    protected boolean onSavePrompt() {

    return true;

    }

Override the onSavePrompt method. Then that screen will not come. Actually that popup screen will come only when something is changed on your screen. So it will ask you for the appropriate action.

    protected boolean onSavePrompt() {

    return true;

    }
夜还是长夜 2024-09-08 02:43:59

跳过保存提示

protected boolean onSavePrompt() {
    return false;
}

Skip the saving prompt with it

protected boolean onSavePrompt() {
    return false;
}
鹿港小镇 2024-09-08 02:43:59

像这样重写 onClose() 方法:

public boolean onClose() {
    close();
    return true;
}

您将不会收到烦人的警报消息。

Override onClose() method like this:

public boolean onClose() {
    close();
    return true;
}

you will not get that annoying alert message.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文