如何防止用户关闭我的应用程序? (Linux 触摸屏应用程序)

发布于 2024-11-26 19:09:12 字数 216 浏览 3 评论 0原文

我想要一个应用程序在带有触摸屏显示器的 Linux 盒子中运行。 我不想使用 Flash 播放器(全窗口大小),所以我的问题是,我应该使用什么来代替 Flash 播放器?

这个盒子将放在有很多孩子的地方,这样他们就可以关闭应用程序并关闭机器 XD。

我不是高级 Java 开发人员,所以我不知道是否有什么东西可以阻止 Java 应用程序中的“关闭窗口”功能。

提前致谢!

I would like to have an application running in a linux box with a touchscreen monitor.
I don't want to use Flash player (with full window size), so my question is, what I should use instead of a Flash Player?

This box is gonna be in a place with a lot of kids, so they can close the application and shutdown the machine XD.

I'm not a Sr. Java developer, so I don't know if theres something over there to block the 'close window' feature in an java application.

Thanks in advance!

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

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

发布评论

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

评论(1

烟燃烟灭 2024-12-03 19:09:12

假设您使用 swing,您可以使用 Frame.setUndecorated(true) 并将其最大化。还有独占全屏模式选项。从那里,您必须取消绑定映射到 window-exiters/taskmanagers/other-utils 的任何全局键。

您可能还需要一个观察者/生成器脚本设置来确保您的应用程序保持运行。我敢打赌有一种更优雅的方法可以做到这一点,但大多数窗口管理器都试图避免应用程序由于恶意的可能性而这样做。

Assuming you're using swing, you could use Frame.setUndecorated(true) and maximize it. There is also the option of exclusive full screen mode. From there, you'll have to unbind any global keys that map to window-exiters/taskmanagers/other-utils.

You may also want a watcher/spawner script setup to make sure your app stays up. I bet there is a more elegant way to do this but most window managers try to avoid an app doing this due to malicious possibilities.

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