LayoutInflater无法按预期工作

时间:2013-01-31 21:31:17

标签: android xml

我被告知创建一个自定义布局来改变我的对话框的默认大小。我似乎无法让它发挥作用。

以下是构建对话框的位置:

AlertDialog.Builder builder = new AlertDialog.Builder(context);
AlertDialog ad = builder.create();
LayoutInflater inflater = context.getLayoutInflater();
builder.setView(inflater.inflate(R.layout.dialog_layout, null));
ad.setMessage("message");
ad.show();

这是布局XML:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <View android:id="@+id/dialog_view"
        android:layout_width="400dp"
        android:layout_height="400dp"
        android:layout_weight="1" />

</FrameLayout>

1 个答案:

答案 0 :(得分:2)

在设置其视图后,从构建器创建警告对话框:

AlertDialog.Builder builder = new AlertDialog.Builder(context);
LayoutInflater inflater = context.getLayoutInflater();
builder.setView(inflater.inflate(R.layout.dialog_layout, null));
AlertDialog ad = builder.create();
ad.setMessage("message");
ad.show();