如何将xmpp状态设置为脱机?

时间:2012-07-20 08:41:06

标签: android xmpp

我已经使用此代码将XMPP状态设置为离线但没有任何反应..请帮帮我

在场;

在场=新呈现(Presence.Type.unavailable);

connection.sendPacket(存在);

我想将我的状态设置为离线,以便其他用户无法向我发送消息。 我真的需要帮助

谢谢!

1 个答案:

答案 0 :(得分:3)

Tyr此代码将您的状态设置为离线:

Presence pres = new Presence(Presence.Type.unavailable);

connection.sendPacket(pres);