在我的项目中,我需要使用自定义对话框而不是 AlertDialog。但是我对 Dialog 样式有两个问题:
- 宽度太小
- 我无法删除标题空间
所以,我需要
但是得到:
调用代码:
Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.write_message);
dialog.show();
布局 XML:
<?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="match_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine"
android:minLines="3" >
<requestFocus />
</EditText>
<Button
android:id="@+id/send_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/send_message" />
</LinearLayout>
如何解决这个问题?请帮忙。