如何在Android中取消正在執行的AsyncTask?
在進入示例之前,我們應該瞭解Android中的AsyncTask是什麼。AsyncTask將在後臺執行緒中執行操作/動作並在主執行緒上更新。在後臺執行緒上執行後臺操作時,使用者可以使用以下程式碼取消操作 -
AsynTaskExample mAsyncTask = new AsyncTaskExample(); mAsyncTask.cancel(true);
此示例演示瞭如何在Android中取消正在執行的AsyncTask。
步驟 1 − 在Android Studio中建立一個新專案,轉到檔案 ⇒ 新建專案並填寫所有必需的詳細資訊以建立新專案。
步驟 2 − 將以下程式碼新增到res/layout/activity_main.xml。
<?xml version = "1.0" encoding = "utf-8"?> <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:tools = "http://schemas.android.com/tools" android:id = "@+id/rootview" android:layout_width = "match_parent" android:layout_height = "match_parent" android:orientation = "vertical" android:background = "#c1c1c1" android:gravity = "center_horizontal" tools:context = ".MainActivity"> <Button android:id = "@+id/asyncTask" android:text = "Download" android:layout_width = "wrap_content" android:layout_height = "wrap_content" /> <ImageView android:id = "@+id/image" android:layout_width = "300dp" android:layout_height = "300dp" /> </LinearLayout>
在上面的程式碼中,當您單擊按鈕時,它將從網際網路源下載影像並追加到ImageView。
步驟 3 − 將以下程式碼新增到src/MainActivity.java
package com.example.andy.myapplication; import android.app.ProgressDialog; import android.content.DialogInterface; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.AsyncTask; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.Toast; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; public class MainActivity extends AppCompatActivity { URL ImageUrl = null; InputStream is = null; Bitmap bmImg = null; ImageView imageView = null; AsyncTaskExample asyncTask = null; ProgressDialog p; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button button = findViewById(R.id.asyncTask); imageView = findViewById(R.id.image); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { asyncTask = new AsyncTaskExample(); asyncTask.execute("https://tutorialspoint.tw/images/tp-logo-diamond.png"); } }); } private class AsyncTaskExample extends AsyncTask { @Override protected void onPreExecute() { super.onPreExecute(); p = new ProgressDialog(MainActivity.this); p.setMessage("Please wait...It is downloading"); p.setIndeterminate(true); p.setCancelable(true); p.setOnCancelListener(new DialogInterface.OnCancelListener() { @Override public void onCancel(DialogInterface dialog) { asyncTask.cancel(true); Toast.makeText(MainActivity.this,"AsyncTask is stopped",Toast.LENGTH_LONG).show(); } }); p.show(); } @Override protected Bitmap doInBackground(String... strings) { try { try { Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } ImageUrl = new URL(strings[0]); HttpURLConnection conn = (HttpURLConnection) ImageUrl .openConnection(); conn.setDoInput(true); conn.connect(); is = conn.getInputStream(); BitmapFactory.Options options = new BitmapFactory.Options(); options.inPreferredConfig = Bitmap.Config.RGB_565; bmImg = BitmapFactory.decodeStream(is, null, options); } catch (IOException e) { e.printStackTrace(); } return bmImg; } @Override protected void onPostExecute(Bitmap bitmap) { super.onPostExecute(bitmap); if(imageView! = null) { p.hide(); imageView.setImageBitmap(bitmap); } else { p.show(); } } } }
步驟 4− 將以下程式碼新增到manifest.xml
<?xml version = "1.0" encoding = "utf-8"?> <manifest xmlns:android = "http://schemas.android.com/apk/res/android" package = "com.example.andy.myapplication"> <uses-permission android:name = "android.permission.INTERNET"/> <application android:allowBackup = "true" android:icon = "@mipmap/ic_launcher" android:label = "@string/app_name" android:roundIcon = "@mipmap/ic_launcher_round" android:supportsRtl = "true" android:theme = "@style/AppTheme"> <activity android:name = ".MainActivity"> <intent-filter> <action android:name = "android.intent.action.MAIN" /> <category android:name = "android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
在上面的程式碼中,我們已授予網際網路許可權以從網際網路源獲取影像。
讓我們嘗試執行您的應用程式。我假設您已將您的實際Android移動裝置連線到您的計算機。要從Android Studio執行應用程式,請開啟您的一個專案活動檔案,然後單擊執行 工具欄中的圖示。選擇您的移動裝置作為選項,然後檢查您的移動裝置,它將顯示您的預設螢幕 -
當您單擊上面的按鈕時,它將啟動一個進度條,單擊進度條以外的任何位置,它將顯示以下螢幕。
上面的螢幕清楚地顯示了非同步任務已停止,並且影像現在已從網際網路源下載。
如果您不停止非同步任務,它將下載如上所示的影像
點選 這裡 下載專案程式碼
廣告