6

我正在使用 asmack 为 android 创建一个 Instant Messenger。我已经启动了一个连接到 xmpp 服务器的聊天服务。该服务连接到 xmpp 服务器,我正在获取名册和存在。但现在我必须更新 UI 并将帐户对象列表从服务传递到活动。我遇到了 Parcelable 和可序列化的。我无法弄清楚这项服务的正确方法是什么。有人可以提供一些我可以做的代码示例吗?

谢谢

4

1 回答 1

1

你正在制作一个不错的应用程序。我不太了解 smack,但我知道如何将对象从服务传递到 Activity。您可以为您的服务制作 AIDL。AIDL 会将您的服务对象传递给活动。然后您可以更新您的活动 UI。这个链接可能对你有帮助!

首先,您必须使用编辑器制作 .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 还包括一个(命令行)编译器辅助工具(位于 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。更多帮助乐趣!

于 2012-05-23T14:24:57.127 回答