0

我正在使用服务在我的应用程序中运行长时间的后台任务,在服务中这些功能正在运行登录到 XMPP 并从 XMPP 服务器获取一些数据。我想显示进度条直到登录完成。如何从服务获取响应以正确更新进度条以避免 UI 中的一些异常。我正在调用这样的服务

final Intent gtalk_intent = new Intent(AccountsActivity.this, GtalkService.class);             
gtalk_intent.putExtra("user_name", acc.getAcc_Name());
gtalk_intent.putExtra("user_pass", acc.getAcc_Pass());               
startService(gtalk_intent);

这是来自服务的代码

public class PmService extends Service {

   @Override
   public IBinder onBind(Intent intent) {               
      return mBinder;
   }

   public class PmBinder extends Binder {
      public PmService getService() {
         return PmService.this;
      }
   }

   @Override
   public void onCreate() {

      super.onCreate(); 
      context = this;       
      app_preferences = new AppPreferences(this);

      chat_source = new ChatsDataSource(this);  
      chat_source.open();
   } 

   @Override
   public int onStartCommand(Intent intent, int flags, int startId) {
      Bundle extras = intent.getExtras();       
      if(extras == null)  {         
         full_name = extras.getString("user_name");
         if(full_name.contains("@")) {
            String[] _na = full_name.split("@");
            U_name = _na[0];
        }
        U_pass = extras.getString("user_pass");                    
    }       
    new PmAsync().execute();
    return START_STICKY;
}

private class PmAsync extends AsyncTask<Void, Void, Void> {

    @Override
    protected void onPreExecute() {          
        super.onPreExecute();
    }

    @Override
    protected void onPostExecute(Void result) {          
        super.onPostExecute(result);
    }

    @Override
    protected Void doInBackground(Void... params) {     
        SASLAuthentication.supportSASLMechanism("PLAIN", 0);
        ConnectionConfiguration config = new ConnectionConfiguration(server_host, SERVER_PORT, SERVICE_NAME);
        configure(ProviderManager.getInstance());
        m_connection = new XMPPConnection(config);
        try {            
            m_connection.connect();                  
            Roster.setDefaultSubscriptionMode(Roster.SubscriptionMode.manual);              
        } catch (XMPPException e) {             
            e.printStackTrace();
        }           
        try {               
            m_connection.login(U_name, U_pass);
            setPacketFilters();                     
        } catch (XMPPException e) {                 
        }

        return null;
    }       
}

我想显示登录完成的进度条,登录完成后如何从服务响应?

4

2 回答 2

0

通过Binder您可以向您的 发送回调Activity,这意味着您可以更新 UI。

  1. 根据您的方法添加Binder(让我们命名onProgress
  2. 从你AsyncTask的这个调用方法Binder
  3. 为了了解进度更新,请考虑使用观察者模式(换句话说 - 你Activity应该监听你的更新Binder,或者更具体地说 - 调用Binder.onProgress方法的更新)
于 2013-04-08T07:22:42.513 回答
-1

您可以通过覆盖 onProgress() 方法来更新进度条,这与您可以参考的案例很接近。关联

于 2013-04-08T07:13:02.833 回答