由於用戶投訴過多,我決定嘗試允許我的Android應用程序用戶根據the official documentation將其移動到SD卡。但是,我的應用程序的核心功能需要後臺服務持續運行。如果有人將我的應用程序移動到他們的SD卡上,無論出於何種原因,我的後臺服務將被終止。 只要我能在第一個可用的機會重新啓動服務,這一切都可以。遺憾的是,儘管install-location指南聲稱我可以使用廣播意圖A
我想從android活動編程發送終端命令。目前我使用的是類似以下內容: Process process = null;
DataOutputStream os = null;
process = Runtime.getRuntime().exec("su");
os = new DataOutputStream(process.getOutputStream());