开发者

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

开发者 https://www.devze.com 2023-01-07 06:23 出处:网络
Using my application, i want to change the status of my gmail or gtalk. How can i change it? Is there any sample code??

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

精彩评论

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