AlertDialog.Builder builder1 = new AlertDialog.Builder(getBaseContext());
OR
AlertDialog.Builder builder1 = new AlertDialog.Builder(context);
OR
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
Any of above code does not work if I write this code in any child class of main activity class, application get crashed.
If I write this code under onCreate method, then it works fine.