我怎样才能改变我的Andr​​oid中的Gtalk和Gmail中的地位?我的、地位、Andr、oid

2023-09-06 05:31:30 作者:流光

使用我的应用程序,我想改变我的Gmail或者Gtalk的状态。我怎样才能改变呢? 有什么样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??

在此先感谢。

推荐答案

如果您正在使用的啪API 为Android:

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);
 
精彩推荐
图片推荐