2013-02-16

取得 PhoneGap 裝置資訊

承上篇 PhoneGap 在 Android 平台的第一步

使用 for/in 查看 device 全域物件
  function onDeviceReady() {
   var str = "";
   for(var s in device) {
    str += s + ":" + device[s] + "\n";
   }
   document.getElementById("textarea").value = str;
  }

以下是用 Android 4.1 模擬器得到的資訊:
  • available: true
  • platform: Android
  • version: 4.1
  • name: sdk
  • uuid: 7b11cbcedb0f6b41
  • cordova: 2.4.0
  • model: sdk
  • overrideBackButton: Device.overrideBackButton() is deprecated. Use App.overrideBackbutton(true).
  • resetBackButton: Device.resetBackButton() is deprecated. Use App.overrideBackbutton(false).
  • exitApp: Device.exitApp() is deprecated. Use App.exitApp().
  • getInfo: function
其中比較重要的是 uuid 和 platform。platform 常見的值為: Android, Blackberry, iPhone, WinCE。


沒有留言:

FB 留言