I can't seem to control the dialog width. I have a simple layout like so`
<TextView android:id="@+id/name_prompt_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/name_prompt"
android:padding="10dip"/>
<EditText android:id="@+id/name_inp" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:lines="1" android:maxLines="1" android:maxLength="48" android:inputType="text">
</LinearLayout>
`
for some reason the dialog is only wide enough for the text input field about 11 chars wide. How do I make the dialog width fill the screen?