【发布时间】:2013-04-05 06:05:25
【问题描述】:
我正在将 android 应用程序移植到 BB 10。我无法从这个 android 移植应用程序中检索 IMEI 号码,有什么方法可以在 android 应用程序中使用 PhoneGap 脚本文件,通过创建本地 html 并使用 java 脚本使用以下概念使用 Phone Gap 检索 IMEI 号码
http://developer.android.com/guide/webapps/webview.html#BindingJavaScript
目前,我尝试使用下面的 javascript 来检索 IMEI 号
<script type="text/javascript" charset="utf-8" src="js/phonegap.js"></script>
</head>
<script type="text/javascript">
function showAndroidToast(toast) {
Android.showToast('kkkkkkk');
var idno = device.uuid ;
var string = device.version;
Android.showToast('idno' + string);
Android.showToast('string ' + idno);
toast = toast + idno;
Android.showToast(toast);
}
</script>
我得到了 null 的值,我正在 BB 10 dev Alpha 设备中对其进行测试。
还有其他解决方法吗?
【问题讨论】:
-
有什么我可以用PhoneGap脚本或任何其他方法来检索IMEI号码
标签: javascript android cordova blackberry-10 blackberry-android