DialogFragment不会尊重wrap_content

时间:2017-08-24 00:45:51

标签: android android-layout android-appcompat

我有一个自定义的DialogFragment类,如下所示:

/**
 * Dialog Fragment containing rating form.
 */
public class RatingDialogFragment extends DialogFragment {

    public static final String TAG = "RatingDialog";

    // ...


    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater,
                             @Nullable ViewGroup container,
                             @Nullable Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.dialog_rating, container, false);
        ButterKnife.bind(this, v);

        return v;
    }

    // ...
}

根视图是LinearLayout

<?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:orientation="vertical"
    android:padding="16dp">

每个子视图都有android:layout_height="wrap_content"

但它看起来像这样。我能做错什么?

enter image description here

2 个答案:

答案 0 :(得分:4)

这在我的布局中是部分问题。在对话框的底部,我有一个按钮栏:

<!-- Cancel and apply buttons -->
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <View
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <Button
        android:id="@+id/button_cancel"
        style="@style/Base.Widget.AppCompat.Button.Borderless"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/cancel"
        android:textColor="@color/greySecondary"
        android:theme="@style/ThemeOverlay.FilterButton" />


    <Button
        android:id="@+id/button_search"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/apply"
        android:theme="@style/ThemeOverlay.FilterButton" />

</LinearLayout>

第一个View(间隔符)正在扩展以填充视口,将其更改为固定它:

    <View
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="1" />

我还必须将其添加到onResume中的DialogFragment

@Override
public void onResume() {
    super.onResume();
    getDialog().getWindow().setLayout(
            ViewGroup.LayoutParams.MATCH_PARENT,
            ViewGroup.LayoutParams.WRAP_CONTENT);
}

答案 1 :(得分:2)

这似乎是布局和对话框片段的问题。而是手动设置:

@Override
public void onResume() {
    super.onResume();
    Window window = getDialog().getWindow();
    window.setLayout(your_value, your_value);
    window.setGravity(Gravity.CENTER);
}

如果需要将内容包装在片段中,可以遍历视图并总计总高度,然后将其用作布局高度。