我想在我的Android应用程序中取消AsyncTask。更重要的是,我的AsyncTask不包含循环,因此无法使用break。

这是我的AsyncTask.doInBackground():

protected Void doInBackground(String... params) {
            String location = params[1];
            if(!location.matches("-?[0-9.]*,-?[0-9.]*")) {
                try {
                    location = Util.getLatLngFromMapsQuery(location);
                } catch (UnchainedAPIException e) {
                    setErrorCode(ERROR_GEO);
                    this.cancel(true);
                }
            }
            UnchainedAPI unchainedAPI = new UnchainedAPI(YELP_KEY, YELP_SECRET, YELP_TOKEN, YELP_TOKEN_SECRET,
                    FOURSQUARE_ID, FOURSQUARE_SECRET, GOOGLE_PLACES_KEY);
            try {
                nonChains = unchainedAPI.getUnchainedRestaurants(params[0], location);
            } catch (UnchainedAPIException e) {
                setErrorCode(ERROR_API);
                this.cancel(true);
            }

            if(nonChains.size() == 0) {
                setErrorCode(ERROR_API);
            }
            return null;
        }


我在这里可以做什么?

最佳答案

AsyncTask.cancel(boolean mayInterruptIfRunning)


绝招。

或从任务内部:

cancel(true);

10-01 05:35