AsyncTask - 执行后,如何更新视图?

时间:2012-05-13 08:12:47

标签: android android-asynctask

在Activity的onCreate()事件中,我启动了一个AsyncTask来从数据库中检索Product数据。成功完成此操作后,如何更新显示?

元代码:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.venueviewbasic);
            (..)
    new GetProductDetails().execute();

class GetProductDetails extends AsyncTask<String, String, String> {

    protected String doInBackground(String... params) {

        // updating UI from Background Thread
        runOnUiThread(new Runnable() {
            public void run() {
                // Check for success tag
                int success;
                try {
                    // Building Parameters
                    List<NameValuePair> params = new ArrayList<NameValuePair>();
                    params.add(new BasicNameValuePair("id", vid));
        (.. retrieve and parse data and set new textview contents ..)

然而,textviews等不会更新。

3 个答案:

答案 0 :(得分:17)

如果要在完成此过程后从异步更新视图 你可以用

protected void onPostExecute(String result)
    {
        textView.setText(result);
    }

但如果您想在运行后台进程时更新数据,请使用。 对于前...

protected Long doInBackground(URL... urls) {
         int count = urls.length;
         long totalSize = 0;
         for (int i = 0; i < count; i++) {
             totalSize += Downloader.downloadFile(urls[i]);
             publishProgress((int) ((i / (float) count) * 100));<------
         }
         return totalSize;
     }

     protected void onProgressUpdate(Integer... progress) {  <-------
         setProgressPercent(progress[0]);
     }

有关详细信息,请参阅this link 希望这会帮助你......!

答案 1 :(得分:11)

我猜这个问题更多的是关于如果asyncTask在一个单独的文件中如何获取UI视图。

在这种情况下,您必须将上下文传递给Async任务并使用它来获取视图。

class MyAsyncTask extends AsyncTask<URL, Integer, Long> {

    Activity mActivity;

    public MyAsyncTask(Activity activity) {
       mActivity = ativity;
    }

然后在你的onPostExecute中使用

int id = mActivity.findViewById(...);

请记住,您无法更新来自&#34; doInBackground&#34;因为它不是UI线程。

答案 2 :(得分:5)

AsyncTask课程中,添加onPostExecute方法。此方法在UI线程上执行,可以更新任何UI组件。

class GetProductDetails extends AsyncTask<...> 
{
    ...
    private TextView textView;
    ...
    protected void onPostExecute(String result)
    {
        textView.setText(result);
    }
}

result参数是从您班级的doInBackground方法返回的值。)