如何在Android应用程序类中显示Progressbar?

时间:2014-06-02 06:40:57

标签: android progressdialog

亲爱的朋友们,              我遇到了一个困难,我试图从扩展应用程序的ProgresDialog类中显示Android。我正在做

context=getApplicationContext();
dialog=ProgressDialog.show(context, "Status", "Downloading The master");

但它引发了以下异常

无法添加窗口 - 令牌null不适用于应用程序

请帮帮我

3 个答案:

答案 0 :(得分:0)

试试这个,

只使用youractvity.this而不是你的上下文。

ProgressDialog dialog=ProgressDialog.show(youractvity.this, "Status", "Downloading The master");

答案 1 :(得分:0)

而不是getApplicationContext(),只需使用它。

或类名.this

答案 2 :(得分:0)

使用

 classNAme.this in 

的地方
 getApplicationContext(). 

OR

   runOnUiThread(new Runnable(){
    public void run() {
        //If there are stories, add them to the table
       // do your stub here
        }

    }