无法使Asynctask适用于不同的Android版本

时间:2013-09-08 19:08:48

标签: android android-asynctask versions

我正在使用此代码:

  public void run() {
        handler.post(new Runnable() {
            public void run() {       
                try {
                    if (count==true)
                    {        
                        try 
                        {
                            r.stop();
                        } catch (Exception e) {}
                        tranca=false;
                        count=false; 

                        dlg.dismiss();
                        dlg.cancel();
                        dlg.dismiss();

                        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
                            new AsyncCaller().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR );
                             //task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, params);
                        } else {
                            new AsyncCaller().execute();
                        }
                    }
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                }
            }
        });
    }
}, 15000);

问题在于我不知道如何制作              new AsyncCaller()。executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);

的工作。问题是asynctask在蜂窝之后改变了它的工作方式,我找到了这个代码。它适用于Honeycomb以下的Android版本,但在我的软糖中它不起作用。我可能正在使用新的AsyncCaller()。executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); 以错误的方式。      asynctask是这样的:

private class AsyncCaller extends AsyncTask<Void, Void, Void>
{
    public JSONObject getLocationInfo() {

        HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?latlng="+latitude1+","+longitude2+"&sensor=true");
        HttpClient client = new DefaultHttpClient();
        HttpResponse response;
        StringBuilder stringBuilder = new StringBuilder();

        try {
            response = client.execute(httpGet);
            HttpEntity entity = response.getEntity();
            InputStream stream = entity.getContent();
            int b;
            while ((b = stream.read()) != -1) {
                stringBuilder.append((char) b);
            }
        } catch (ClientProtocolException e) {
            } catch (IOException e) {
        }

        JSONObject jsonObject = new JSONObject();
        try {
            jsonObject = new JSONObject(stringBuilder.toString());
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return jsonObject;
    }

    ProgressDialog pdLoading = new ProgressDialog(MainActivity.this);

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

        //this method will be running on UI thread
        pdLoading.setMessage("\tLoading...");
        pdLoading.show();
    }
    @Override
    protected Void doInBackground(Void... params) {

        //this method will be running on background thread so don't update UI frome here
        //do your long running http tasks here,you dont want to pass argument and u can access the parent class' variable url over here


        JSONObject ret = getLocationInfo(); 
        JSONObject location2;
        String location_string;
        try {
            location2 = ret.getJSONArray("results").getJSONObject(0);
            location_string = location2.getString("formatted_address");
            Log.d("test", "formattted address:" + location_string);
            StringRua = (" " + location_string);
        } catch (JSONException e1) {
            e1.printStackTrace();

        }

         StringSMS = (" Latitude " + StringLat + " Longitude " + StringLon + " Ad " + StringRua);   




        EditText Search01; 
        String String01;

        Search01 = (EditText) findViewById(R.id.Search01);
        String01 = Search01.getText().toString();  


        SmsManager smsManager = SmsManager.getDefault();
        smsManager.sendTextMessage(String01, null, StringSMS , null, null);

        return null;
    }

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

        //this method will be running on UI thread

        pdLoading.dismiss();
    }

    }   

我知道stackoverflow中有这个完全相同的问题,但我尝试了很多解决方案,似乎没有人为我工作。我只需要为一个JellyBean设备调用asynctask。请记住,新的AsyncCaller()。execute(); 在蜂窝以下的设备中运行良好。 谢谢

编辑:仍然没有工作,它没有执行Jelly Bean设备中的dointhebackground内部(它显示加载,所以我知道它发送到AsynctTask)。我已经尝试在外面做了背景,在Pre和Post中需要做什么,但我不能这样做因为“NetworkOnMainThreadException”问题,只是强制关闭新的Android版本的程序。

2 个答案:

答案 0 :(得分:0)

将asynctask代码复制到https://stackoverflow.com/a/9509184/2190244并通过调用execute将其用于HC之前和之后,如果您想在不同的线程池执行程序上执行异步任务。对于HC及更高版本中的AsyncTasks,除非您指定自己的执行程序并将其传递给execute方法,否则使用的内部方法是串行执行程序。

如果您不想使用该代码,您仍然可以为HC前后调用执行,它应该正常工作

答案 1 :(得分:0)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB), 在此处删除=。如果你的BuildVersion是api 11,那么它将会连续运行。

尝试将targetSdk更改为最新版本。处理AsyncTask的方式(串行/并行)取决于targetSdk。阅读更多关于AsyncTask here

的陷阱