创建“电池使用情况”安卓意图
在我的 Nexus 上,有一个方便的应用程序,可以通过“设置”>“访问”访问。关于电话>电池使用。
我想从我的一项活动中 StartActivity() 该应用程序。
我可以在日志中看到,当“设置”运行它时,会记录此意图:
Starting activity:
Intent { act=android.intent.action.MAIN
cmp=com.android.settings/.fuelgauge.PowerUsageSummary }
我无法将其与 Android Java 源代码中的某些内容相关联。我什至无法在 GIT 源中找到“fuelgauge”。任何人都可以指出我正确的文件,或其他有用的东西,例如如何创建正确类型的意图?
谢谢
彼得
On my nexus one, there is a handy app reachable from Settings > About Phone > Battery use.
I'd like to StartActivity() that app from one of my Activities.
I can see in the log that when Settings runs it, this intent is logged:
Starting activity:
Intent { act=android.intent.action.MAIN
cmp=com.android.settings/.fuelgauge.PowerUsageSummary }
I'm having trouble relating that to something in Android Java source. I can't even find "fuelgauge" in the GIT source. Can anyone point me to the right file, or anything else helpful, like how to create the right kind of Intent?
Thanks
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基于 @Chris Lacy 的少量代码,我将代码包装到您调用以打开此屏幕的静态方法:
Base on the handful code of @Chris Lacy , I wrapped the code to static method that you call to open this screen:
代码如下:
Code is as follows: