Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在应用程序中更改安卓设备的密码或添加密码。
我正在制作的应用程序是设备管理员。
不可以。您可以提示用户提供密码,并且可以对有效密码的构成进行限制(例如,最小长度)。但是,您不能直接自己添加或更改密码。
这是完全可能的。在您的应用被授予设备管理员权限后,您可以执行:
mDPM.resetPassword("<new code>", 0); mDPM.lockNow();
mDPM 是您的DevicePolicyManager对象。
DevicePolicyManager