gpt4 book ai didi

android - 设计器布局在自定义对话框中未正确显示

转载 作者:行者123 更新时间:2023-11-29 15:31:02 25 4
gpt4 key购买 nike

我在这里设计了一个设置对话框布局:

<?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:padding="10dip"
android:weightSum="1" android:gravity="center">
<LinearLayout android:id="@+id/linearLayout1"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:orientation="vertical" android:layout_weight="1">

<TextView android:text="Sound Options:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content" android:id="@+id/textView1"
android:layout_height="wrap_content"></TextView>

<LinearLayout android:id="@+id/linearLayout2"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:gravity="center_vertical" android:paddingLeft="5dip">

<TextView android:text="Background Sounds:"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content" android:id="@+id/textView2"
android:layout_height="wrap_content"></TextView>
<ToggleButton android:text="ToggleButton" android:id="@+id/butBackgroundSound"
android:layout_height="wrap_content" android:layout_width="wrap_content"></ToggleButton>

</LinearLayout>

<LinearLayout android:id="@+id/linearLayout3"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:gravity="center_vertical" android:paddingLeft="5dip">

<TextView android:text="Effect Sounds:"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content" android:id="@+id/textView2"
android:layout_height="wrap_content"></TextView>
<ToggleButton android:text="ToggleButton" android:id="@+id/butEffectSound"
android:layout_width="wrap_content" android:layout_height="wrap_content"></ToggleButton>

</LinearLayout>

</LinearLayout>

</LinearLayout>

这是该布局的预览(而且是正确的):

enter image description here

但是在Dialog里面,是这样的:

enter image description here

我不知道为什么顶部总是有一个空白区域,它发生在我所有的项目中,然后,对话框在这个项目中完全被破坏了。请帮助我。

最佳答案

要删除空格,请在您的对话框代码中尝试这一行。

Dialog dialog = new Dialog(context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

并设置属性

  android:layout_width="fill_parent" android:layout_height="fill_parent"

对于前两个父布局..在您的情况下,为前两个线性布局设置此属性。

关于android - 设计器布局在自定义对话框中未正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6742287/

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