在非活动类中显示progressdialog

时间:2011-08-26 08:09:00

标签: android android-activity dialog

我正在尝试在非Activity类中显示对话框。基本上,我在我的应用程序中检测到一个对象,我想显示一个对话框,然后切换活动。我得到一个“java.lang.RuntimeException:无法在我的logcat中创建未调用Looper.prepare()的线程内的处理程序。

以下是我的一些代码:

public ImageTargetsRenderer(Context context) {
    this.context = context;
    mDialog = new ProgressDialog(context);
  }

public void onDrawFrame(GL10 gl) {
    testFlag = 0;

    // DO NOT RENDER IF THERE IS NO TRACKABLE
    if (!mIsActive)
        return;

    // Call our native function to render content
    // RENDER IF THERE IS A TRACKABLE
    testFlag = renderFrame();

    System.err.println("ImageTargetsRenderer reports: " + testFlag);

    if(testFlag > 0 && frameCount > 5)
    {
        frameCount = 0;
        System.err.println("Starting to switch activities.");

        mDialog.setTitle("Please wait");
        mDialog.setMessage("Please wait");
        mDialog.show();

        new Thread() {
            public void run() {
                        try{
                            sleep(5000);
                        } catch (Exception e) { }
                // Dismiss the Dialog
                mDialog.dismiss();
            }
        }.start();


        Intent myIntent = new Intent(context, FlashActivity.class);
        myIntent.putExtra("com.qualcomm.QCARSamples.ImageTargets.flagTest", testFlag);
        myIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        context.startActivity(myIntent);
        testFlag = 0; 

        return;
    }
    frameCount++;


}

3 个答案:

答案 0 :(得分:3)

应该从UIthread调用您的Dialog,所以尝试使用它,

context.this.runOnUiThread(new Runnable() {

            @Override
            public void run() {
                mDialog.show();

            }
        });

希望这有效。

答案 1 :(得分:1)

你这样做

  context.runOnUIThread( new Runnable() {
             public void run() {
                  // show the Dialog
                  mDialog.setTitle("Please wait");
                  mDialog.setMessage("Please wait");

                  mDialog.show();
               }
            });
         }

     Thread.sleep(5000);

        context.runOnUIThread( new Runnable() {
             public void run() {
                  // Dismiss the Dialog
                  mDialog.dismiss();
               }
            });

答案 2 :(得分:1)

如果您在任何线程或任何后台任务上执行任何UI操作,这将是您将获得的异常。 context.runOnUiThread也没有工作。

改为使用:

activity.runOnUiThread(new Runnable() {
                            @Override
                            public void run() {
                             mDialog.dismiss();
                            }
                          });

您可以使用相同内容显示activity的对象activity