0
A
回答
0
對於非root用戶誰是4.3+,你必須指導用戶去應用程序設置和禁用「顯示通知」
應用說明對於root用戶,請使用以下代碼:
public static boolean requestRoot()
{
Process p;
try {
// Preform su to get root privledges
p = Runtime.getRuntime().exec("su");
// Attempt to write a file to a root-only
DataOutputStream os = new DataOutputStream(p.getOutputStream());
os.writeBytes("echo \"Do I have root?\" >/system/sd/temporary.txt\n");
// Close the terminal
os.writeBytes("exit\n");
os.flush();
try {
p.waitFor();
if (p.exitValue() != 255) {
return true;
}
else {
return false;
}
} catch (InterruptedException e) {
return false;
}
} catch (IOException e) {
return false;
}
}
public static void hideNotification(Context context)
{
Process p;
try {
// Preform su to get root privledges
p = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(p.getOutputStream());
os.writeBytes("service call notification 6 s16 " + context.getPackageName() + " i32 " + context.getApplicationInfo().uid + " i32 0");
// Close the terminal
os.writeBytes("exit\n");
os.flush();
}
catch(Exception e)
{}
}
public static void showNotification(Context context)
{
Process p;
try {
// Preform su to get root privledges
p = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(p.getOutputStream());
os.writeBytes("service call notification 6 s16 " + context.getPackageName() + " i32 " + context.getApplicationInfo().uid + " i32 1");
// Close the terminal
os.writeBytes("exit\n");
os.flush();
}
catch(Exception e)
{}
}
相關問題
- 1. 當活動可見時隱藏前臺服務的通知
- 2. Android自定義前臺服務通知
- 3. 未顯示Android前臺服務通知
- 4. 通知前臺服務PendingIntent android
- 5. Android前臺服務通知替換
- 6. 取消前臺服務的通知是否將服務拉離前臺?
- 7. 一旦服務不在前臺,可以從前臺服務中取消通知
- 8. 隱藏以前的HTML桌面通知
- 9. 帶通知的Android預定後臺/前臺服務
- 10. 隱藏通知欄
- 11. 當應用程序在前臺通知包含自動打開
- 12. 隱藏誰包含誰包含
- 13. 隱藏包含在jQuery的
- 14. 將iOS通知隱藏到Android通知
- 15. 的Android無法隱藏通知欄
- 16. 有沒有辦法隱藏Vaadin通知?
- 17. jQuery的的.css(「知名度」,「隱藏」)方法不隱藏元素
- 18. 如何從自己的前臺通知中停止服務
- 19. 用傳感器數據更新前臺服務通知
- 20. 前臺服務正在通知中點擊
- 21. 更新通知是否刪除服務的前臺狀態?
- 22. 前臺服務通知未顯示在Android 8上。+
- 23. 通知不會出現在前臺服務
- 24. jQuery隱藏個人通知
- 25. 通知,鍵盤隱藏
- 26. 隱藏持久通知
- 27. Win8:隱藏吐司通知
- 28. 隱藏Jquery通知欄
- 29. 後臺服務android沒有通知
- 30. 後臺GCM通知IOS/php服務器