10

在 Activity 的 onCreate() 事件中,我启动了 AsyncTask 以从数据库中检索产品数据。成功完成后,如何更新显示?

元代码:

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 等不会更新。

4

3 回答 3

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]);
     }

有关更多详细信息,请参阅此链接 希望这对您有所帮助...!

于 2012-05-13T08:44:10.863 回答
11

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

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

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

    Activity mActivity;

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

然后在你的 onPostExecute 使用

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

请记住,您不能从“doInBackground”更新视图,因为它不是 UI 线程。

于 2015-07-01T17:18:29.210 回答
5

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

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

result参数是从doInBackground你的类的方法返回的值。)

于 2012-05-13T08:20:15.820 回答