Android開發:後台非同步任務之AsyncTask實現

來源:互聯網
上載者:User

在Android開發中,經常要用到一些連網等長時間的操作,如果直接順序執行的話,介面會暫時黑屏並卡死,這樣給使用者的體驗並不好,這裡我們可以用後台非同步任務來實現這些操作。用eclipse建立Activity的時候,選擇LoginActivity模版,會自動產生有登入操作的非同步任務模版。

我們在執行背景工作時,彈出一個進度框ProgressDialog,給使用者提供一種更好的體驗:

 ProgressDialog progress =  ProgressDialog( progress.setMessage("Please wait ...");

我們要執行的背景工作通過繼承AsyncTask類來實現,並重寫doInBackground、onPostExecute兩個方法,doInBackground方法執行背景工作,onPostExecute方法為任務執行後處理。AsyncTask類的詳細介紹可參考官方文檔:http://developer.android.com/reference/android/os/AsyncTask.htm。

  LoginTask  AsyncTask<Void, Void, Boolean>                                                task =                                 Toast.makeText(LoginActivity., "Success ."         }              Toast.makeText(LoginActivity., "Failed !"   }

在介面控制項的單擊事件中添加對任務的調用:

 button.setOnClickListener(                (task !=              Toast.makeText(LoginActivity., "Task is running ..."                        task =          task.execute((Void)   });

這樣一來,點擊按鈕的時候會彈出一個進度框,並建立非同步任務並執行,在執行過程中根據拋出的異常及其他條件判斷返回true/false,在onPostExecute方法設定任務為空白、進度框消失,根據任務執行結果執行後續相應處理。

 

全部代碼:

LoginActivity Button button = ProgressDialog progress = LoginTask task = progress = ProgressDialog( progress.setMessage("Please wait ..." button = button.setOnClickListener( (task != Toast.makeText(LoginActivity., "Task is running ..." task = task.execute((Void) LoginTask AsyncTask<Void, Void, Boolean> task = Toast.makeText(LoginActivity., "Success ." } Toast.makeText(LoginActivity., "Failed !" }LoginActivity.java

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.