0
我用PG-插件屏幕取向:https://github.com/their/pg-plugin-screen-orientation如何檢查手機和平板電腦之間的手機平板設置屏幕方向?
如何在PhoneGap的對設定畫面方向手機&平板電腦之間的檢查設備。平臺?
我煎茶觸摸制定
我用PG-插件屏幕取向:https://github.com/their/pg-plugin-screen-orientation如何檢查手機和平板電腦之間的手機平板設置屏幕方向?
如何在PhoneGap的對設定畫面方向手機&平板電腦之間的檢查設備。平臺?
我煎茶觸摸制定
你可以通過這樣的:http://try.sencha.com/touch/2.2.0/demos/Ext.os.is/viewer.html
如果您想檢查的設備類型,你可以使用這樣的事情:
if(Ext.os.is.Phone)
{
console.log('Phone');
}
else if(Ext.os.is.Tablet)
{
console.log('Tablet');
}
else
{
console.log('Others');
}
更多關於:
如果我在sencha touch中檢查設備類型,那麼在AndroidManifest.xml中不需要放置代碼。 – Jason
是的,不需要在AndroidManifest.xml中放置任何東西。 – GenieWanted