“com.android.systemui.demo”sendBroadcast - 不工作?

时间:2016-08-17 05:10:58

标签: android broadcast demo

如何以编程方式成功激活android状态栏的演示模式?我已经尝试过这种方法但没有取得任何成功:

Link to an example

// Enable demo mode
Intent intent = new Intent("com.android.systemui.demo");
intent.putExtra("command", "enter");
sendBroadcast(intent);

有没有人能让它成功运作? adb命令正常运行。

非常感谢!

1 个答案:

答案 0 :(得分:0)

我发现系统应用程序无法以编程方式执行此操作。需要" android.permission.DUMP"权限仅授予系统应用程序。我会寻找替代方案。