I followed this or this to Show Alert dialog Message at Center. Actually, It Should Be work Fine.
AlertDialog.Builder ad= new AlertDialog.Builder(this);
TextView myMsg = new TextView(this);
myMsg.setText("This is new Custom Alert \n And \n Welcome to android");
myMsg.setGravity(Gravity.CENTER_HORIZONTAL);
ad.setView(myMsg);
But its showing Error at Gravity like,
error: cannot find symbol variable Gravity
Can Any One Suggest me on this kind... it not even Compiling in New Android Studio.