本文介绍了检测Android手机和平板电脑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我正在开发移动应用程序,并希望区分android平板电脑和手机.现在我正在使用它,但它不能区分手机和平板电脑.

函数DetectAndroid()
{
如果(uagent.search(deviceAndroid)> -1)
返回true;
其他
返回false;

Hi,

I am working on mobile app and want to differentiate between the android tablet and mobile.Now I am using it like this but it is not differentiate the mobile and tablet.

function DetectAndroid()
{
if (uagent.search(deviceAndroid) > -1)
return true;
else
return false;

Your help will be appreciated.

推荐答案


这篇关于检测Android手机和平板电脑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-17 15:13