开发者

How can i change the status of my Gtalk or Gmail in Android?

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开发者_如何学Python.


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);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜