Android:ProgressDialog.show()がgetApplicationContextでクラッシュする
なぜこれが起こっているのか理解できません。このコード: mProgressDialog = ProgressDialog.show(this, "", getString(R.string.loading), true); 正常に動作します。ただし、このコード: mProgressDialog = ProgressDialog.show(getApplicationContext(), "", getString(R.string.loading), true); 次の例外をスローします。 W/WindowManager( 569): Attempted to add window with non-application token WindowToken{438bee58 token=null}. Aborting. D/AndroidRuntime( 2049): Shutting down VM W/dalvikvm( 2049): threadid=3: thread exiting with uncaught exception (group=0x4001aa28) E/AndroidRuntime( 2049): Uncaught handler: thread main exiting due to …