首先..两者有什么区别?多个用户可以订阅同一个频道吗?其次,我可以通过定义 BroadcastReceiver 的代码向我遇到的另一部手机发送消息
else if (action.equals(BumpAPIIntents.CHANNEL_CONFIRMED)) {
long channelID = intent.getLongExtra("channelID", 0);
Log.i("Bump Test", "Channel confirmed with " + api.userIDForChannelID(channelID));
Toast.makeText(getBaseContext(), "Channel confirmed with " + api.userIDForChannelID(channelID), Toast.LENGTH_SHORT).show();
api.send(channelID, "Hello, world!".getBytes());
AFAIK 会话然后保持打开状态,我可以发送后续消息。我不知道该怎么做。我真的希望凹凸 api 有(更好的)文档 :(
任何帮助将不胜感激。