我正在使用asmack为Android创建一个Instant Messenger。 我已经启动了一个连接到xmpp服务器的聊天服务。 该服务连接到xmpp服务器,我正在获得名册和存在。 但现在我必须更新UI并将帐户对象列表从服务传递给活动。我遇到过Parcelable和可序列化的。 我无法弄清楚这项服务的正确方法是什么。 有些人可以提供一些代码示例,我也可以这样做。
由于
答案 0 :(得分:1)
你正在做一个不错的应用程序。我不知道更多关于smack但我知道如何将对象从服务传递给Activity。您可以为您的服务制作AIDL。 AIDL会将您的服务对象传递给活动。然后,您可以更新您的活动用户界面。这link可能会对您有所帮助!
首先,您必须使用编辑器制作.aidl文件,并将此文件保存在桌面上。 AIDL就像一个接口而已。比如, ObjectFromService2Activity.aidl
package com.yourproject.something
// Declare the interface.
interface ObjectFromService2Activity {
// specify your methods
// which return type is object [whatever you want JSONObject]
JSONObject getObjectFromService();
}
现在复制此文件并将其粘贴到项目文件夹中,ADT插件将在gen /文件夹中自动生成ObjectFromService2Activity界面和存根。
Android SDK还包括一个(命令行)编译器aidl(在tools /目录中),您可以使用它来生成Java代码,以防您不使用Eclipse。
覆盖服务中的obBind()方法。比如, Service1.java
public class Service1 extends Service {
private JSONObject jsonObject;
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "onCreate()");
jsonObject = new JSONObject();
}
@Override
public IBinder onBind(Intent intent) {
return new ObjectFromService2Activity.Stub() {
/**
* Implementation of the getObjectFromService() method
*/
public JSONObject getObjectFromService(){
//return your_object;
return jsonObject;
}
};
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d(TAG, "onDestroy()");
}
}
使用您的活动或您要启动此服务的位置启动服务并进行ServiceConnection。像,
Service1 s1;
private ServiceConnection mConnection = new ServiceConnection() {
// Called when the connection with the service is established
public void onServiceConnected(ComponentName className, IBinder service) {
// Following the example above for an AIDL interface,
// this gets an instance of the IRemoteInterface, which we can use to call on the service
s1 = ObjectFromService2Activity.Stub.asInterface(service);
}
// Called when the connection with the service disconnects unexpectedly
public void onServiceDisconnected(ComponentName className) {
Log.e(TAG, "Service has unexpectedly disconnected");
s1 = null;
}
};
使用ObjectFromService2Activity的对象可以访问方法s1.getObjectFromService()将返回JSONObject。 More Help有趣!