Want to display AlertDialog in onCreate of Activity - android
In my activity, I call a MyDialog (custom dialog) in onCreate() and handle its DismissListener in Activity to find if its cancelled or not. If its cancelled, I finish the activity, else load the activty. During this loading time, I want to show a Alert/Progress dialog to let the user know that its loading, please wait. But am not able to see the dialog. This is how I have coded : public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ld = new AgreeDialog(this); ld.setOnDismissListener(new OnDismissListener() { @Override public void onDismiss(DialogInterface