我有一个简单的对话框,只显示两个选项(“编辑”和“删除”)。我在.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>
提前致谢
答案 0 :(得分:0)
尝试将布局宽度更改为最小宽度:
android:layout_width="350dp" <- instead
android:minWidth="350dp" <- insert