如何在Android中更改Gtalk或Gmail的状态?

时间:2011-11-02 12:28:07

标签: android

使用我的应用程序,我想更改我的Gmail或gtalk的状态。我怎么能改变它? 有没有示例代码??

提前致谢。

1 个答案:

答案 0 :(得分:1)

如果您使用的是Smack API Android:

// Create the presence object with default availability 
Presence presence = new Presence(Presence.Type.available);

// Set the status message
presence.setStatus("Lame status is lame");

// Set the highest priority
presence.setPriority(24);

// Set available presence mode
presence.setMode(Presence.Mode.available);

// Send the presence packet through the connection
connection.sendPacket(presence);