Pressing Button and continuing to next Intent, ProgressDialog
问题 I want to show a ProgressDialog when my app is uploading an image. As uploading an image can take quite a while. Now I have 2 Asynctasks, one for uploading an Image to the server, and one for sending the email. After sending the email, the next intent should pop up. This is the code for my next Button: public void next(View view) { Intent intent = new Intent(Step4.this, Step5.class); intent.putExtra(EXTRA_MESSAGE, (Serializable) _user); intent.putExtra(EXTRA_MESSAGE2, _isRepairable); intent