博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 设置Dialog的宽度
阅读量:5233 次
发布时间:2019-06-14

本文共 368 字,大约阅读时间需要 1 分钟。

1     private void setWinWidth() {2         DisplayMetrics metric = new DisplayMetrics();3         getWindowManager().getDefaultDisplay().getMetrics(metric);4         LayoutParams p = getWindow().getAttributes();5         p.width = (int) (metric.widthPixels * 0.8);6         getWindow().setAttributes(p);7     }

 

转载于:https://www.cnblogs.com/HappyStriving/p/3154145.html

你可能感兴趣的文章