我只是启用设备管理时遇到问题.我很确定这是清单条目的问题,但是我无法确定问题区域.
清单条目:
<manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="com.example" androID:versionCode="1" androID:versionname="1.0"> <application androID:label="DeviceadminTrial" androID:icon="@drawable/icon" androID:deBUGgable="true"> <activity androID:name=".MyActivity" androID:label="@string/app_name"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver androID:name=".Receiver" androID:label="device_admin" androID:permission="androID.permission.BIND_DEVICE_admin"/> <Meta-data androID:name="androID.app.device_admin" androID:resource="@xml/device_admin" /> <intent-filter> <action androID:name="androID.app.action.DEVICE_admin_ENABLED"/> </intent-filter> </application></manifest>
错误信息:
12-25 15:42:38.930: WARN/DeviceadminAdd(394): Unable to retrIEve device policy ComponentInfo{com.example/com.example.Receiver} org.xmlpull.v1.XmlPullParserException: No androID.app.device_admin Meta-data
device_admin.xml
<device-admin xmlns:androID="http://schemas.androID.com/apk/res/androID"> <uses-policIEs> <limit-password /> <watch-login /> <reset-password /> <force-lock /> <wipe-data /> </uses-policIEs></device-admin>
启用方法:
enable = (button)findVIEwByID(R.ID.button); enable.setonClickListener(new VIEw.OnClickListener() { public voID onClick(VIEw v) { Intent intent = new Intent (DevicePolicyManager.ACTION_ADD_DEVICE_admin); intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_admin,receiver); startActivityForResult(intent,1);//1 is enabled,0 is Disabled. output.setText(""+policymanager.isadminActive(receiver)); } });
Receiver类与此处的示例一样基本:
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/DeviceAdminSample.html
任何帮助或建议将不胜感激.
解决方法 在清单中:<receiver androID:name=".Receiver" androID:label="device_admin" androID:permission="androID.permission.BIND_DEVICE_admin"> <Meta-data androID:name="androID.app.device_admin" androID:resource="@xml/device_admin" /> <intent-filter> <action androID:name="androID.app.action.DEVICE_admin_ENABLED" /> </intent-filter></receiver>总结
以上是内存溢出为你收集整理的Android的设备政策管理错误全部内容,希望文章能够帮你解决Android的设备政策管理错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)