android开发怎么用代码去重启手机
2个回答
2018-03-02 · 知道合伙人软件行家
关注
展开全部
1.用runtime来实现,即:
try { Runtime.getRuntime().exec("su"); Runtime.getRuntime().exec("reboot"); } catch (IOException e) { }
2.Powermanger
PowerManager pm = (PowerManager)getApplicationContext().getSystemService(Context.POWER_SERVICE);pm.reboot(null);
以上需要系统root权限,adb push xxx.apk system/app安装,一定要在这个目录下才能成为系统应用,来获取更大的操作权限
try { Runtime.getRuntime().exec("su"); Runtime.getRuntime().exec("reboot"); } catch (IOException e) { }
2.Powermanger
PowerManager pm = (PowerManager)getApplicationContext().getSystemService(Context.POWER_SERVICE);pm.reboot(null);
以上需要系统root权限,adb push xxx.apk system/app安装,一定要在这个目录下才能成为系统应用,来获取更大的操作权限
展开全部
三星手机本机没有自带此功能。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询