如何在 Android 上启动活动“管理帐户/同步设置”?
开始显示管理帐户/同步设置活动的意图是什么?查找此类系统活动意图的最简单方法是什么?
解决方案:感谢@cant0na的提示,启动管理帐户活动:
new Intent("android.settings.SYNC_SETTINGS")
如何查找意图请参阅@cant0na的答案。
What intent to start to show Manage Accounts / Sync Settings activity? What is the easiest way to lookup intents for such system activities?
SOLUTION: Thanks to hint from @cant0na, to start Manage Accounts activity:
new Intent("android.settings.SYNC_SETTINGS")
How to lookup intents see @cant0na's answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您甚至可以使用额外的内容来增强意图,以便仅显示具有这些权限的适配器的帐户:
you can even enhance the intent with extra,so that only accounts that have adapters for those authorities are displayed:
找到要使用的意图的最简单方法是在手机上打开应用程序时在 eclipse 或 ddms 中的 logcat 中查看。
它看起来像这样:
The easiest way to find which intents to use is to see in logcat in eclipse or ddms while opening the app on your phone.
It will look something like this:
正如@cant0na 所说,这是最好的方法。另一种方法是查看源代码,或者对于您可以注册的一些可用意图,您可以转到清单并设置意图过滤器,并且在清单的 GUI 中列出了一些可用操作以添加到意图过滤器。
此链接还列出了所有这些内容并附有解释:
意图参考
as @cant0na said that is the best way. the alternative would be going through the source code or for some of the available intents that you can register you can go to the manifest and set a intent filter and in the GUI of the manifest there are some of the available actions listed to add to the intent filter.
also this link has all of them listed with explanations:
Intent Reference