0

おはようございます、私の Android アプリには、AsyncTask を介して (Google エンドポイントを介して) Web 上で検索を開始するボタンがあります。私の問題は、AsyncTask が完了するまでボタンが「クリック解除」されないことです。これには数秒かかる場合があります。インターネット接続が遅いと、アプリケーションがクラッシュすることさえあります。いずれにせよ、アプリケーションは AsyncTask が完了するまで完全に停止します。AsyncTask を使用する理由はまさにこの問題を解消することだったので、何が起こるかわかりません!

OnClickListener は次のとおりです。

SearchListener = new OnClickListener() {
  @Override
  public void onClick(View v) {     
      String cname=TextCourse.getText().toString();
      if (!cname.isEmpty()){
          try {
              CollectionResponseWine listavini= new QueryWinesTask(messageEndpoint,cname,5).execute().get();
          } catch (InterruptedException e) {
              showDialog("Errore ricerca");
              e.printStackTrace();
          } catch (ExecutionException e) {
              showDialog("Errore ricerca");
              e.printStackTrace();
          }              
      } else{
          showDialog("Inserisci un piatto");
      }
  }
};

呼び出されている AsyncTask は次のとおりです。

private class QueryWinesTask 
extends AsyncTask<Void, Void, CollectionResponseWine> {
  Exception exceptionThrown = null;
  MessageEndpoint messageEndpoint;
  String cname;
  Integer limit;

  public QueryWinesTask(MessageEndpoint messageEndpoint, String cname, Integer limit) {
      this.messageEndpoint = messageEndpoint;
      this.cname=cname;
      this.limit=limit;
  }

  @Override
  protected CollectionResponseWine doInBackground(Void... params) {
      try {
          CollectionResponseWine wines = messageEndpoint.listwines().setCoursename(cname).setLimit(limit).execute();                    
          return wines;
      } catch (IOException e) {
          exceptionThrown = e;
          return null;
          //Handle exception in PostExecute
      }            
  }

  protected void onPostExecute(CollectionResponseWine wines) {
      // Check if exception was thrown
      if (exceptionThrown != null) {
          Log.e(RegisterActivity.class.getName(), 
                  "Exception when listing Messages", exceptionThrown);
          showDialog("Non ci sono vini associati al tuo piatto. Aggiungine uno!");
      }
      else {

          messageView.setText("Vini piu' votati per " + 
                  cname + ":\n\n");
          for(Wine wine : wines.getItems()) {
              messageView.append(wine.getName() + " (" + wine.getScore() + ")\n");
          }
      }
  }  
}
4

1 に答える 1