问题描述
使用我的应用程序,我想改变我的Gmail或Gtalk的状态.我怎么改变它? 是否有任何示例代码?
提前感谢.
推荐答案
// 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);
问题描述
Using my application, i want to change the status of my gmail or gtalk. How can i change it? Is there any sample code??
Thanks in advance.
推荐答案
If you are using Smack API for 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);