自定义对话框似乎没有设置宽度

Custom dialog doesn't appear to have its set width

我有一个简单的对话框,它只显示两个选项("Edit" 和 "Delete")。我在 .xml 文件中设置它的布局,在属性中指定给定的宽度。但是,在应用程序中,它看起来与设置的 "wrap_content" 一样窄。它的宽度足以包裹文本。我怎样才能克服这个问题?可能我错过了一些非常简单的东西。这是 xml 代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog"
android:layout_width="350dp"
android:layout_height="wrap_content"
android:orientation="vertical"   >
<TextView
  android:id="@+id/editOption"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginBottom="16dp"
  android:layout_marginLeft="6dp"
  android:layout_marginRight="6dp"
  android:layout_marginTop="16dp"
  android:text="@string/edit"
  android:textAlignment="center"
  android:textColor="@color/colorPrimaryText"
  android:textSize="@dimen/text_size" />

  <TextView
  android:id="@+id/deleteOption"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_marginBottom="20dp"
  android:layout_marginLeft="6dp"
  android:layout_marginRight="6dp"
  android:layout_marginTop="20dp"
  android:text="@string/delete"
  android:textAlignment="center"
  android:textColor="@color/colorPrimaryText"
  android:textSize="@dimen/text_size" />
  </LinearLayout>

提前致谢

尝试将布局宽度更改为最小宽度:

android:layout_width="350dp" <- instead
android:minWidth="350dp" <- insert