gpt4 book ai didi

android: layout: 如何让我的对话框用 XML 填满屏幕

转载 作者:太空狗 更新时间:2023-10-29 12:56:47 29 4
gpt4 key购买 nike

我正在尝试让一个对话框打开,覆盖大部分屏幕(我的意思是它仍然具有漂亮的圆形效果,但覆盖了后面的内容)

我一直在尝试使用 fill parent 但它一直表现得像一个包装内容

<?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。

关于android: layout: 如何让我的对话框用 XML 填满屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5791942/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com