android中活动的进程ID?
我可以获得消息传递活动的进程 ID 吗?我也可以使用它开始该特定活动。
Can i get the process Id of an messaging activity? and also using this can i start that particular activity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须寻找消息传递意图而不是进程 ID。
例如:startActivity(com.android.mms)
You must be looking for Messaging Intent not process id.
Eg: startActivity(com.android.mms)
一种不太漂亮的解决方案是使用活动管理器并遍历所有正在运行的应用程序进程来搜索该消息传递应用程序。
One solution that isn't pretty is to use Activity manager and go through all the Running app processes searching for that messaging app.