I want to create a simple ProgressDialog in my Activity. I created it like this:
ProgressDialog
protected void onCreate(Bundle savedInstanceState) { super.
You can't show the dialog before the activity became visible to the user. Call the showing in onResume() or in some button onClickListener.