我遇到了这段代码的问题。
if (Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.FROYO){
DevicePolicyManager mDPM;
mDPM = (DevicePolicyManager)context_.getSystemService(Context.DEVICE_POLICY_SERVICE);
mDPM.wipeData(0);
}
错误是:FROYO can not be resolved or is not a filed
在第 1 行
DEVICE_POLICY_SERVICE can not be resolved or is not a filed
在第 3行
我以前的图书馆有问题,他们不会通过 eclipse 找到。
对于某些测试,我将我的孔项目导入另一台 PC 并且它在那里工作。我们的管理员告诉我在 Windows 中创建一个新的本地用户,并使用新的工作区将其导入那里,它也可以工作。
我将我的 PC 用户切换为新用户并导入我的所有项目,但现在我收到其中一个错误。
我也在问题中找到了这个:
The method removeActiveAdmin(ComponentName) is undefined for the type DevicePolicyManager
感谢您的帮助。