如何防止用户关闭我的应用程序? (Linux 触摸屏应用程序)
我想要一个应用程序在带有触摸屏显示器的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用 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.