android:layout:如何使我的对话框充满XML
作者:互联网
我正在尝试打开一个对话框以覆盖大部分屏幕(这意味着它仍然具有很好的四舍五入效果,但覆盖了后面的内容)
我一直在尝试填充父对象,但它的行为像包装内容一样
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_centerHorizontal="true"
>
<LinearLayout
android:gravity="center_horizontal"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<SurfaceView android:id="@+id/surface"
android:layout_width="400px"
android:layout_height="200px"
android:layout_centerHorizontal="true">
</SurfaceView>
<Button android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Ok, Let me play !!!" />
</LinearLayout>
</LinearLayout>
我在这里尝试了解决方案
How can I get a Dialog style activity window to fill the screen?
dialog.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
它可以满足我的要求
所以现在我想知道xml中的耗损是什么(如果可以帮助的话,我尝试将所有布局行为放入xml中而不是代码中,^^)
解决方法:
据我了解,解决How can I get a Dialog style activity window to fill the screen?的问题是在加载xml之后必须修改布局.基本上没有XML可以单独执行此操作.
标签:layout,fill-parent,android 来源: https://codeday.me/bug/20191208/2091761.html