Theme with v7 library android.support.v7.app.AlertDialog
android.support.v7.app.AlertDialog.Builder builder = new android.support.v7.app.AlertDialog.Builder(this,R.attr.alertDialogTheme);
Theme with constructor for android.app.AlertDialog
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(this,AlertDialog.THEME_HOLO_LIGHT );
But according to the new documentation
This constant (AlertDialog.THEME_HOLO_LIGHT) is deprecated at API level 23 . Use Theme_Material_Light_Dialog_Alert.
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(this,android.R.style.Theme_Material_Light_Dialog_Alert );
source share