对话框自定义布局未正确拉伸

Dialog custom layout not stretching properly

我正在创建自定义对话框。 但是它显示了额外的 space 周围。

代码:

private void showPushAlert(Context context, String message, int layoutID) {
            // custom dialog
            final Dialog dialog = new Dialog(context);
            dialog.setContentView(layoutID);

            TextView tvPushMessage = (TextView) dialog.findViewById(R.id.tvAlertMessage);
            tvPushMessage.setText(message);

            Button btnPushOk = (Button) dialog.findViewById(R.id.btnAlertOk);
            btnPushOk.setOnClickListener(new View.OnClickListener()
            {
                @Override
                public void onClick(View view) {
                    dialog.dismiss();
                }
            });
            dialog.show();
        }

布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="275dp"
    android:layout_height="wrap_content"
    android:background="@drawable/background_round_rectangle"
    android:orientation="vertical"
    android:padding="@dimen/activity_vertical_margin">
    <TextView
        android:id="@+id/tvAlertMessage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="Message"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="@color/black" />;
    <Button
        android:id="@+id/btnAlertOk"
        android:layout_width="65dp"
        android:layout_height="30dp"
        android:layout_below="@id/tvAlertMessage"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="20dp"
        android:background="@drawable/btn_use"
        android:text="@string/ok"
        android:textColor="@color/white" />
</RelativeLayout>

我也试过充气机:

    final Dialog dialog = new Dialog(context);
    View view = getLayoutInflater().inflate(layoutID, null);
    dialog.setContentView(view);

但不是完美的结果。只是宽度拉长了。 我想保持简单,所以只使用了 Dialog,而不是 AlertDialog 或 Dialog 片段。

不确定为什么会这样..

二手 在 dialog.show()

之后执行此操作
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(dialog.getWindow().getAttributes());
lp.width = 500;
dialog.getWindow().setAttributes(lp);

这显示了自定义宽度,但顶部 space 仍然可见。 不得不改为 AlertDialog.Builder + 上面的代码片段(AlertDialog 也显示 top space)最终得到结果。