最佳答案
有人知道如何为自定义对话框设置页边距吗?我这样问是因为我有一个自定义的对话框,但是当显示它时,尽管我在布局参数上显式地设置了 WRAP _ CONTENT,它还是会伸展到填充父对话框。
基本上,该对话框包含一个列表视图,其元素必须向下滚动,例如,当元素为1时,它不会拉伸,但当添加更多项时,该对话框将占据整个屏幕。
有什么建议吗? 我已经尝试了所有可能的解决方案组合,但没有取得令人满意的结果
编辑: 添加了对话框布局
<?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="wrap_content"
android:layout_margin="50dip"
android:orientation="vertical"
android:layout_gravity="top|center">
<FrameLayout android:layout_width="fill_parent" android:layout_margin="5dip" android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="20sp" android:textColor="@color/black"/>
<Button android:layout_height="32dip" android:layout_width="32dip"
android:id="@+id/guide_dialog_cross_button"
android:background="@drawable/button_cross_white"/>
</FrameLayout>
<ListView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:fadingEdge="none"
android:layout_margin="5dip"/>
<ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_margin="5dip" />
</LinearLayout>