本文主要是介绍改变AlertDialog的大小,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1)更改AlertDialog窗口大小的方法:
AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.show();
WindowManager.LayoutParams params = dialog.getWindow().getAttributes();
params.width = 200;
params.height = 200 ;
dialog.getWindow().setAttributes(params);2)去除边框
AlertDialog.setView(view,0,0,0,0);
来自:http://blog.csdn.net/pochuanpiao/article/details/6370573
这篇关于改变AlertDialog的大小的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!