本文介绍了如何从另一个应用程序启动android facebook应用聊天的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经看过其他主题:从其他应用程式启动Facebook应用程序a>并尝试了一些列在那里的URI,但我不知道如何开始与特定朋友的Facebook聊天。
I've seen other topics like this: launch facebook app from other app and tried some of the URIs listed there, but I can't figure out how to start the facebook chat with a specific friend.
是否有官方页面描述IntentUriHandler和所有允许的URI与他们的参数?
Is there an official page that describes the IntentUriHandler and all the allowed URIs with their params?
谢谢,
Lorenzo
Thanks, Lorenzo
推荐答案
fb://messaging/{#user_id}
您可以使用此URI与已知ID的朋友打开消息。
you can use this URI to open messaging with a friend with known id.
您可以开始下面的意图
startActivity(new Intent(android.action.VIEW, "fb://messaging/{#user_id}"));
这篇关于如何从另一个应用程序启动android facebook应用聊天的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!