制作一个简单的蜂窝发射器
在基于 Android 平板电脑的菜单应用程序中与餐厅合作。如果可能的话,我想限制仅访问菜单应用程序和浏览器。我如何将普通的仪表板应用程序变成启动器替代品???
Working with a restaurant in an android tablet based menu app. If possible I would like to restrict access to just the menu app and browser. How would a I go about turning a normal dashboard app into a launcher replacement???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到您的
中:当用户再次按 HOME 时,他们将看到一个选择器 - 选中“将此设置为默认”复选框,然后点击您的应用的条目,然后您就可以现在是主屏幕。
但请记住:
您的 SDK 中有一个主屏幕示例项目,可以演示更多内容。
Add this to your
<activity>
:When the user presses HOME again, they will get a chooser -- check the "make this the default" checkbox, then tap the entry for your app, and you're now the home screen.
Bear in mind, though, that:
There is a Home sample project in your SDK that demonstrates more of this.
您可以编写一个简单的应用程序,允许用户使用意图启动 2 个不同的应用程序(菜单和浏览器),同时永远不会结束您的主应用程序。在该应用程序/启动器应用程序中,您可以以不允许用户退出该应用程序/启动器的方式覆盖主页/后退按钮。这意味着应用程序一旦启动,就无法停止它,除非关闭平板电脑。
You can write a simple app that allows the user to start 2 different apps (the menu and the browser) using intents while never ending your main app. In that app/launcher app you can override the home/back button in such a way that it will not allow the user to quit that app/launcher. This means that once the app is started there is no way to stop it, except by turning the tablet off.