【发布时间】:2017-02-15 05:06:34
【问题描述】:
我已经在我的 android 应用程序中成功实现了一对一聊天。现在我想知道我的消息是否已送达。我用谷歌搜索了我的问题,但找不到任何解决方案。
提前致谢。
【问题讨论】:
我已经在我的 android 应用程序中成功实现了一对一聊天。现在我想知道我的消息是否已送达。我用谷歌搜索了我的问题,但找不到任何解决方案。
提前致谢。
【问题讨论】:
您可以尝试在 Smack 中使用 ReceiptReceiveListener。
public class YourFragment extends Fragment implements ReceiptReceivedListener {
@Override
public void onReceiptReceived(String fromJid, String toJid, String receiptId, Stanza receipt) {
if(isAdded()){
// Check if the receiptId equals to the receipt you have sent.
}
}
}
【讨论】: