当我转到另一个屏幕并注销此进程对话框时,我的应用程序仍在显示处理中,但仍在处理中并没有停止它。
当我在登录页面中按下登录按钮时,我使用了以下代码:
btnLogin.setOnClickListener(new OnClickListener() {
public void onClick(View view) {
showProgress();
postLoginData();
}
});
public void postLoginData() {
if (pin.getTextSize() == 0 || mobile.getTextSize() == 0) {
AlertDialog.Builder altDialog = new AlertDialog.Builder(this);
altDialog.setMessage("Please Enter Complete Information!");
} else {
Intent i = new Intent(this.getApplicationContext(),
AgAppMenu.class);
Bundle bundle = new Bundle();
bundle.putString("mno", mobile.getText().toString());
bundle.putString("pinno", pin.getText().toString());
i.putExtras(bundle);
startActivity(i);
}
}
private void showProgress() {
myProgressDialog = ProgressDialog.show(LoginScreen.this, null, "Processing please wait...", true);
}