ProgressDialog无法在外部AsyncTask中工作

eri*_*ric 9 android android-asynctask

我开始认为要使ProgressDialog工作,AsyncTask必须是Activity类中的内部类.真正?[编辑很久以后......答案是假的,我不确定这是一个错误还是什么.我使用的是Android 1.5.我打算读一读服务.]

我有一个活动,使用数据库来操纵信息.如果填充数据库一切都很好.如果没有填充,那么我需要从网站下载信息,填充数据库,然后访问填充的数据库以完成onCreate中的视图.

问题是没有办法确定AsyncTask线程何时完成填充数据库,我得到以下强制关闭错误消息:抱歉!应用程序意外停止.我点击Force Close按钮,后台AsyncTask线程继续工作,数据库被填充,一切正常.

我需要摆脱该错误消息,并需要一些帮助来解决这个问题.这是一些伪代码:

public class ViewStuff extends Activity
{
  onCreate
  { 
    if(database is populated)
      do_stuff
    else
    {
      FillDB task = null;
      if(task == null || task.getStatus().equals(AsyncTask.Status.FINISHED))
       {                
         task = new FillDB(context);
         task.execute(null);
       }
    }

  continue with onCreate using information from database to properly display 

 } // end onCreate
} // end class
Run Code Online (Sandbox Code Playgroud)

在单独的文件中:

public class FillDB extends AsyncTask<Void, Void, Void>
{
    private Context context;

    public FillDB (Context c)  //pass the context in the constructor
{
    context = c;
}

    public void filldb ()
    {
      doInBackground();
    }

    @Override
    protected void onPreExecute()
    {          
       ProgressDialog progressDialog = new ProgressDialog(context);
       //crashes with the following line
       progressDialog.show(context, "Working..", "Retrieving info");
    }

    @Override
    protected Void doInBackground(Void... params)
    {
  // TODO Auto-generated method stub

try
     etc etc etc
    }
 }
Run Code Online (Sandbox Code Playgroud)

这是来自模拟器的堆栈跟踪:

----- pid 846 at 2010-03-21 19:58:25 -----
Cmd line: com.trial

DALVIK THREADS:
"main" prio=5 tid=3 NATIVE
 | group="main" sCount=1 dsCount=0 s=0 obj=0x40018e70
 | sysTid=846 nice=0 sched=0/0 handle=-1098855268
 at android.os.BinderProxy.transact(Native Method)
 at      android.app.ActivityManagerProxy.handleApplicationError(ActivityManagerNative.java:2103)
 at com.android.internal.os.RuntimeInit.crash(RuntimeInit.java:302)
 at   com.android.internal.os.RuntimeInit$UncaughtHandler.uncaughtException(RuntimeInit.java:75)
 at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:887)
 at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:884)
 at dalvik.system.NativeStart.main(Native Method)

 "Binder Thread #3" prio=5 tid=15 NATIVE
 | group="main" sCount=1 dsCount=0 s=0 obj=0x43733d88
 | sysTid=852 nice=0 sched=0/0 handle=1486928
 at dalvik.system.NativeStart.run(Native Method)

"Binder Thread #2" prio=5 tid=13 NATIVE
 | group="main" sCount=1 dsCount=0 s=0 obj=0x437313c8
 | sysTid=851 nice=0 sched=0/0 handle=1492472
 at dalvik.system.NativeStart.run(Native Method)

"Binder Thread #1" prio=5 tid=11 NATIVE
 | group="main" sCount=1 dsCount=0 s=0 obj=0x4372b9b0
 | sysTid=850 nice=0 sched=0/0 handle=1492664
 at dalvik.system.NativeStart.run(Native Method)

"JDWP" daemon prio=5 tid=9 VMWAIT
 | group="system" sCount=1 dsCount=0 s=0 obj=0x4372a2a0
 | sysTid=849 nice=0 sched=0/0 handle=1490176
 at dalvik.system.NativeStart.run(Native Method)

"Signal Catcher" daemon prio=5 tid=7 RUNNABLE
| group="system" sCount=0 dsCount=0 s=0 obj=0x4372a1e8
| sysTid=848 nice=0 sched=0/0 handle=1487888
 at dalvik.system.NativeStart.run(Native Method)

"HeapWorker" daemon prio=5 tid=5 VMWAIT
 | group="system" sCount=1 dsCount=0 s=0 obj=0x427d03c0
 | sysTid=847 nice=0 sched=0/0 handle=1487592
 at dalvik.system.NativeStart.run(Native Method)

 ----- end 846 -----
Run Code Online (Sandbox Code Playgroud)

我究竟做错了什么?

雪花先生,

尝试:

@Override
protected void onPreExecute()
{

Activity.this.runOnUiThread(new Runnable() {
      public void run() {
        ProgressDialog progressDialog = new ProgressDialog(context);
        //crashes with the following line
        progressDialog.show(context, "Working..", "Retrieving info");
      }
    });
}
Run Code Online (Sandbox Code Playgroud)

Activity.this被标记为错误:在范围内无法访问活动类型的封闭实例

我在想我需要FillDB扩展Activity然后在FillDB中创建一个扩展AsyncTask的私有类?那不会工作.FillDB活动无法启动并且无法使用startActivityForResult,因为AsyncTask完成后不会返回任何结果.

更新:尝试在调用类中创建私有类.仍然无法显示ProgressDialog.其中一个错误是:无法添加窗口 - 令牌null不适用于应用程序.我不知道提到了什么令牌.

eri*_*ric 2

我放弃了 AsyncTask 并使用 Handler 来处理线程。一切都很好。

不确定这是 1.5 中 AsyncTask 的错误还是我没有做的其他事情。