本文介绍了以编程方式检测Google Glass的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何通过本机应用程序从代码中检测Google Glass和智能手机?

From a native application how can we detect Google Glass verses a smart phone from code?

正确回答问题:

boolean isRunningOnGlass() {
     return "Google".equalsIgnoreCase(Build.MANUFACTURER) && Build.MODEL.startsWith("Glass");
 }

推荐答案

另一种方法是使用Build API:

Another way of doing this would be to use the Build API:

http://developer.android.com/reference/android/os/Build.html

这篇关于以编程方式检测Google Glass的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 05:10