2012-10-30 43 views
0

我如何获取下面的这些项目以从设备读取数据并在我的html页面中显示?Android手机应用程序读取设备信息

$('#devicename').html(device.name); 
    $('#devicephonegap').html(device.phonegap); 
    $('#devicplatform').html(device.platform); 
    $('#deviceuuid').html(device.uuid); 
    $('#deviceversion').html(device.version); 

整版代码

<!DOCTYPE html> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<meta name="format-detection" content="telephone=no" /> 
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> 
<link rel="stylesheet" type="text/css" href="jquery.mobile-1.2.0.css" /> 
<script type="text/javascript" src="jquery-1.8.2.js"></script> 
<script type="text/javascript" src="jquery.mobile-1.2.0.js"></script> 
<script type="text/javascript"> 

    $(document).on("pageinit", "#newpage", function() { 
     $('#saveButton').click(function() { 
      localStorage.setItem("name", $('#name').val()); 
     }); 


    }); 
    var wID = navigator.accelerometer.watchAcceleration(onSucess, onerror, { frequency: 1000 }); 
    function onSucess(a) { 
     $('#aX').html(a.x); 
     $('#aY').html(a.y); 
     $('#aZ').html(a.z); 
     $('#aTime').html(a.timestamp); 
    } 
    function onError() { 

    } 
var phoneName = window.device.name; 
var phoneName = device.name; 
     $('#devicename').html(device.name); 
     $('#devicephonegap').html(device.phonegap); 
     $('#devicplatform').html(device.platform); 
     $('#deviceuuid').html(device.uuid); 
     $('#deviceversion').html(device.version); 


    $(document).on('pageshow', '#newpage', function() { 
     var personName = localStorage.getItem("name"); 
     if (personName.length > 0) { 
      $('#name').val(personName); 
     } 
    }); 
</script> 
<title>Hello World 2</title> 
</head> 
<body> 
<div id="home" data-role="page"> 
    <div data-role="header"> 
     <h1>Home Page2</h1> 
    </div> 
    <div data-role="content"> 
     hello Phone Gap and JQuery Mobile! 
     <a href="#newpage" data-role="button">new page</a> 
     <br> 
     <p id="devicename"> </p> 
     <p id="devicephonegap"> </p> 
     <p id="deviceplatform"> </p> 
     <p id="deviceuuid"> </p> 
     <p id="deviceversion"> </p> 
     <p id="ax"> </p> 
     <p id="ay"> </p> 
     <p id="az"> </p> 
     <p id="aTime"> </p> 
    </div> 
    <div data-role="footer" data-position="fixed"> 
    <a href="#dialogpage" data-rel="dialog" data-icon="plus">Add Something</a> 

    </div> 
</div> 


<div id="newpage" data-role="page"> 
    <div data-role="header"> 
    <a href="#home" data-icon="delete">Cancel</a> 
     <h1>New Page</h1> 
     <a href=#home" data-icon="save">save</a> 
    </div> 
    <div data-role="content"> 
     <label for="name">what is your name?</label> 
     <input id="name" type="text" name="name" value="" /> 
     <a id="saveButton" href="" data-role="button">Save</a> 
    </div> 
    <div data-role="footer" data-position="fixed"> 
     <h4> 
      footer</h4> 
    </div> 
</div> 

<div id="dialogpage" data-role="page"> 
<div data-role="header"> 
     <h1>Dialog</h1> 
    </div> 
    <div data-role="content"> 
     this is a dialog 
    </div> 
</div> 
<script type="text/javascript" src="cordova-2.1.0.js"></script> 
<script type="text/javascript" src="js/index.js"></script> 
<script type="text/javascript"> 
    app.initialize(); 
</script> 
</body> 
</html> 

回答

1

您需要包括设备插件,并要求为Android READ_PHONE_STATE权限。这是在明确记载:

http://docs.phonegap.com/en/2.1.0/cordova_device_device.md.html#Device_permissions

+0

感谢您的链接。我没有app/res/xml/plugins.xml其称为配置。它确实有这一行代码。在我的清单中,我确实拥有读取手机状态许可权。 – CsharpBeginner

+0

这些线会超出我上面的代码吗? //这些引用相同的'device' var phoneName = window.device.name; var phoneName = device.name; – CsharpBeginner

+0

好吧,现在我看到你的代码,我可以看到问题。您需要先等待deviceready事件,然后才能访问任何PhoneGap API或值。 –

1

-你需要READ_PHONE_STATE许可添加到您的AndroidManifest.xml文件。

+0

是的,我有。所以我想它不是我拥有的权限问题。 – CsharpBeginner