android關機實現-九游会j9娱乐平台
a. android 中如何實現關機、重啟
主要思路:1、需要源碼才能編譯
2、修改項目的android.mk文件,添加
local_certificate := platform
3、androidmanifest.xml中添加許可權
3.1 manifest標簽中添加
android:shareduserid="android.uid.system"
3.2 使用許可權
// 創建intent
// 如果是要重啟,則使用intent.action_reboot
intent intent = new intent(intent.action_request_shutdown);
// 設置是否需要用戶確認,若不需要,可以不設置或設置為false
intent.putextra(intent.extra_key_confirm, true);
// 當作新任務執行
intent.setflags(intent.flag_activity_new_task);// 啟動startactivity(intent);
據說還可以使用broadcast的方式調用,不過我試了一下,窗口是出來了,但一直停在關機的進度條那。不知道是不是機子的問題。代碼如下:intent i = new intent(intent.action_reboot);
i.putextra("nowait", 1);
i.putextra("interval", 1);
i.putextra("window", 0);
sendbroadcast(i);
10-22 10:02 回答curie_871073
b. android完整的java關機代碼
必須有root許可權的才可以,有的話執行命令行就可以了 runtimegetruntime()exec(new string[]{ "su", "-c", "poweroff -f" }); runtimegetruntime()exec(new string[]{ "su", "-c", "reboot" });android完整的java關機代碼?
c. android 中如何實現關機、重啟求解,謝謝
如果已經root許可權,那麼可以實驗一下下面的代碼:
try{
process proc =runtime.getruntime().exec(newstring[]{"su","-c","reboot -p"});
proc.waitfor();
}catch(exception ex){
ex.printstacktrace();
}
d. android 中如何實現關機,重啟
關機命令
runtime.getruntime().exec("su -c \"/system/bin/shutdown\"");
重啟命令
runtime.getruntime().exec("su -c \"/system/bin/reboot\"");
注意:手機必須root,否則這兩個命令無法執行。