在我的Galaxy上,我可以点击系统首选项中的这个按钮来启动我目前选择的白日梦。

是否有办法通过意图在应用程序中复制此功能?我没有白日梦服务,但我想让用户开始他们喜欢的白日梦。
发布于 2014-01-31 17:10:19
final Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.systemui", "com.android.systemui.Somnambulator");
startActivity(intent);https://stackoverflow.com/questions/21369368
复制相似问题