android 对话框全屏

对话框风格

<style name="Lam.Dialog.FullScreen" parent="@style/Theme.AppCompat.Dialog">
<item name="android:windowNoTitle">true</item>
<!-- 无标题 -->
<item name="android:windowBackground">@android:color/transparent</item>
<!-- 背景透明 -->
<item name="android:backgroundDimEnabled">false</item>

</style>

 

关键点

Dialog.getWindow().setGravity(Gravity.FILL);

布局文件高度最好使用weight填充

你可能感兴趣的:(android)