Dialog片段与wrap_content以全屏显示。如何使其成为布局的高度而不是全屏?

时间:2014-02-04 06:47:57

标签: android android-fragments dialogfragment

我已经创建了一个自定义对话框片段及其xml,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"

    android:padding="5dip" >

    <ListView
        android:id="@+id/product_list"
         android:background="@drawable/border_details"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
         />

    <RelativeLayout
        android:id="@+id/AddtoCart"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginTop="10dp"

        android:background="#005959" >

        <Button
            android:id="@+id/button_addToCart"
            android:layout_width="250dp"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="@drawable/gradient_button"
            android:layout_marginTop="2dp"
            android:layout_marginBottom="2dp"
            android:text="@string/add_to_cart"
            android:textColor="#000000" />
    </RelativeLayout>

</RelativeLayout>

当我调用此对话框时,它将按照屏幕截图中的全屏显示:

ScreenShot

如何将此对话框的大小限制为列表和按钮的高度?

如何删除多余的空格?

2 个答案:

答案 0 :(得分:25)

通过将RelativeLayout更改为LinearLayout并将列表的weight设置为1来解决问题 如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
   android:orientation="vertical"
    android:padding="5dip" >

    <ListView
        android:id="@+id/product_list"
         android:background="@drawable/border_details"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
         />
    <RelativeLayout 
    android:id="@+id/AddtoCart"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:layout_marginTop="10dp"
    android:background="#005959" >

    <Button
        android:id="@+id/button_addToCart"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_marginBottom="2dp"
        android:layout_marginTop="2dp"
        android:background="@drawable/gradient_button"
        android:text="@string/add_to_cart"
        android:textColor="#000000" />

</RelativeLayout>
</LinearLayout>

答案 1 :(得分:12)

您已android:layout_alignParentBottom="true" 对于底部相对布局,因此它将占据屏幕的底部,因为父相对布局的高度不是静态的。

溶液:

  1. 您可以将底部相对布局的参考更改为 - &gt;将底部(下方)对齐到列表视图
  2. 或者您可以将底部布局设置为列表视图的页脚
  3. 或使用线性布局垂直而不是父级相对布局,高度作为换行内容
  4. 或者为父相对布局提供静态高度,以便底部相对布局将获得父相对布局的高度,并且它将与父相对布局的底部对齐(不要忘记将底部相对布局的顶部对齐到列表视图)