码迷,mamicode.com
首页 > 其他好文 > 详细

AlertDialog 设定位置

时间:2014-10-18 13:56:35      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:android   ar   sp   on   log   bs   new   window   ui   

AlertDialog alert = new AlertDialog.Builder(this).create(); 

 
WindowManager.LayoutParams lp =alert.getWindow().getAttributes();
// lp.x=0;
lp.y=100;

alert.show(); 
alert.getWindow().setGravity(Gravity.CENTER);
alert.getWindow().setLayout( 
android.view.WindowManager.LayoutParams.WRAP_CONTENT, 
android.view.WindowManager.LayoutParams.WRAP_CONTENT); 

alert.getWindow().setContentView(R.layout.top_items);

AlertDialog 设定位置

标签:android   ar   sp   on   log   bs   new   window   ui   

原文地址:http://www.cnblogs.com/Ringer/p/4032903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!