When we show an AlertDialog in android it shows in the center of the screen. Is there any way to change the position?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 28 down vote accepted
+50

After searching in various post I have found the solution.

The code is posted below:

private CharSequence[] items = {"Set as Ringtone", "Set as Alarm"};
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setItems(items, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int item) {

            if(item == 0) {

            } else if(item == 1) {

            } else if(item == 2) {

            }
        }
    });

     AlertDialog dialog = builder.create();
     dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
     WindowManager.LayoutParams WMLP = dialog.getWindow().getAttributes();


 WMLP.x = 100;   //x position
 WMLP.y = 100;   //y position

 dialog.getWindow().setAttributes(WMLP);

 dialog.show();

Here x position's value is pixels from left to right. For y position value is from bottom to top.

link|improve this answer
1  
You could also create a custom alert dialog. I just recently did this and then had to get the displays width and height and then set the X and Y based on a percentage of those values, that way the layout scaled nicely. developer.android.com/guide/topics/ui/dialogs.html#CustomDialog – Roloc May 23 '11 at 16:46
2  
It works but I had to add this: WMLP.gravity = Gravity.TOP | Gravity.LEFT; otherwise the x and y values were used as offsets from the center of the screen. – BoD Jan 24 at 16:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.