AlertDialog dlg = new AlertDialog.Builder(this).create();
//-------------------------------------------------------------------
Window w=dlg.getWindow();
WindowManager.LayoutParams lp =w.getAttributes();
lp.x=10;
lp.y=150;
//-------------------------------------------------------------------
只需要将红色的部分添加上去就能更改提示框的默认显示位置哦!!
//-------------------------------------------------------------------
Window w=dlg.getWindow();
WindowManager.LayoutParams lp =w.getAttributes();
lp.x=10;
lp.y=150;
//-------------------------------------------------------------------
只需要将红色的部分添加上去就能更改提示框的默认显示位置哦!!