具有AlertDialog风格的对话框

时间:2012-10-30 14:16:43

标签: android dialog alertdialog

在我的项目中,我需要使用自定义Dialog而不是AlertDialog。但是我对Dialog风格有两个问题:

  1. 宽度太小
  2. 我无法删除标题空间
  3. 所以,我需要

    enter image description here

    但是得到:

    enter image description here

    致电代码:

    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>
    

    如何解决这个问题?求助。

1 个答案:

答案 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中添加填充