在线程之间显示进度对话框?

时间:2011-10-19 07:30:33

标签: android

在线程之间显示进度对话框?

1 个答案:

答案 0 :(得分:2)

您应该避免使用getApplicationContext() - 方法来获取Context - 对象。有更好的方法:

  • 如果在活动中,您只需提供this
  • 即可
  • 如果在活动的内部类中,您可以提供OuterClassName.this
  • 在需要Context - 对象的Helper类中创建例如一个视图,通过构造函数提供Context - 对象并将其保存在属性中。

另请参阅此类似问题:Android: ProgressDialog.show() crashes with getApplicationContext