专用Android设备可以应用吗?
我的任务是采购一个现成的触摸板设备,该设备可以用作专用的工业仪器控制器。
是否可以运行专用应用程序并阻止用户访问 Android 内的所有其他功能/应用程序。
另外,是否可以编写自己的 USB 设备驱动程序来连接 USB 串行类设备?
I have been tasked with sourcing an off the shelf touch pad device that can be used as a dedicated industrial instrument controller.
Is it possible to run a dedicated application and prevent user access to all other functions/applications within Android.
Also is it possible write your own USB device driver which would allow you to connect an USB serial class device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

发布评论
评论(3)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当然可以。就像已经说过的那样,Android 是开源的。您可以获取源代码并根据您的需要重新编码,以便设备按照您想要的方式运行。
最后,默认的 android 启动器和所有其他应用程序都只是标准的 Java 应用程序(主要)。您可以对其进行重新编码,以便加载您的应用程序,而不是加载启动器应用程序。
Of course you can. Like already stated Android is open source. You can take the sources and recode them to your desire so that the device behaves like you want.
In the end the default android launcher and all other applications are all just standard Java applications (mainly). You can recode it so that instead of loading the launcher app it loads up your app.