在我的项目中,我需要使用自定义Dialog而不是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>
如何解决这个问题?求助。
答案 0 :(得分:2)
你试过了吗?
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); //for the title space
和
dialog.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT); //for the width
如果需要,可以在布局xml中添加填充