如何从Android中的AsyncTask刷新Activity

时间:2012-08-30 19:05:33

标签: android json android-activity alertdialog

在我的程序中,我从json URL中检索值,然后在listView中显示它们。现在我想删除列表中的一些项目,所以当我单击一个项目然后删除API调用AsyncTask的doInBackground()。现在完成AsyncTask后我想重新加载列表,以便可以看到更改。

如何重新列出列表以查看更改..

我的AsyncTask是一个单独的类。

这是我的AsyncTask代码:

protected String doInBackground(String... DATA) {
    // TODO Auto-generated method stub
    rqst_type = DATA[0];
    if(rqst_type.equals("del_top5"))
    {
        String url = DATA[1];
        JsonParser jParser = new JsonParser();
        JSONObject json = jParser.getJSONfromUrl(url+memberId);
        Log.v(TAG_LOG, "del url: "+url+memberId);
        try
        {
            message = json.getString(TAG_DELSCS);
            Log.v(TAG_LOG, "msg "+TAG_DELSCS);
        }
        catch(JSONException e)
        {
            Log.v(TAG_LOG, String.valueOf(e));
        }
    }
    return null;
}


protected void onPostExecute(String result) {
    // TODO Auto-generated method stub
    super.onPostExecute(result);
    if(rqst_type.equals("del_top5"))
    {
        if(message.equals("true"))
        {
            AlertDialog alertDialog = new AlertDialog.Builder(context).create();
            alertDialog.setTitle("Course Deleted");
            alertDialog.setMessage("Course Sucessfully Deleted");
            alertDialog.setIcon(R.drawable.tick);
            alertDialog.setButton("OK", new DialogInterface.OnClickListener()
            {
                public void onClick(DialogInterface dialog, int which)
                {

                }
            });
            alertDialog.show();
        }
        else if(message.equals("false"))
        {
            AlertDialog alertDialog = new AlertDialog.Builder(context).create();
            alertDialog.setTitle("Error");
            alertDialog.setMessage("Course Not Deleted");
            alertDialog.setIcon(R.drawable.alert);
            alertDialog.setButton("OK", new DialogInterface.OnClickListener()
            {
                public void onClick(DialogInterface dialog, int which)
                {

                }
            });
            alertDialog.show();
        }
        else
        {
            AlertDialog alertDialog = new AlertDialog.Builder(context).create();
            alertDialog.setTitle("Error");
            alertDialog.setMessage("Unknown Erroe Occured");
            alertDialog.setIcon(R.drawable.alert);
            alertDialog.setButton("OK", new DialogInterface.OnClickListener()
            {
                public void onClick(DialogInterface dialog, int which)
                {

                }
            });
            alertDialog.show();
        }
    }
    progress.dismiss();
}

当我点击AlertDialog的OK按钮时,我想要重新加载我的活动名称MyTop5.class

这是我的ListAdapter的代码:

ListAdapter adapter = new SimpleAdapter(this, LoadingScreen.top5List, R.layout.top5_list,
            new String[] { TAG_GLFCRSNAME, TAG_GLFCRSID, TAG_CRTDATE, TAG_FCLTY, TAG_HOLES },
            new int[] { R.id.top_golfname, R.id.top_courseid, R.id.top_createdate, R.id.top_fclty, R.id.top_holes });
setListAdapter(adapter);

先谢谢..

2 个答案:

答案 0 :(得分:0)

我通常将Activity作为参数传递给AsyncTask,并在工作完成时使用它来调用活动的公共方法。例如,它可以通过构造函数传入。然后我会执行列表中所需的更改,然后你必须记得在适配器上调用notifyDataSetChanged(),如果你将它用作ListView。

答案 1 :(得分:0)

你可以试试这个

adapter.notifyDataSetChanged();

让观察者调用适配器。