Android AlertDialog没有垂直居中/缩放

时间:2011-06-21 18:59:57

标签: android alertdialog

我正在构建一个包含自定义视图的AlertDialog,如下所示:

@Override
protected Dialog onCreateDialog(int id) {
    switch (id) {
        case DIALOG_INTRO:
            // setup the dialog
            AlertDialog.Builder builder = new AlertDialog.Builder(this);
            View inflatedLayout = ((LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE)).inflate(R.layout.intro, null);
            builder.setView(inflatedLayout);

            // return the dialog
            return builder.create();
    }

    return super.onCreateDialog(id);
}

布局XML:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="match_parent" 
    android:layout_height="match_parent"
    android:background="#000000">

    <TableLayout 
        android:layout_height="match_parent" 
        android:layout_width="match_parent"
        android:stretchColumns="2"
        android:shrinkColumns="1">

        <TableRow>
            <TextView 
                android:id="@+id/intro_TextView_title"
                android:layout_height="wrap_content"
                android:layout_span="2"
                android:gravity="center"
                android:text="@string/intro_title"
                android:textSize="22sp" 
                android:textColor="#FFFFFF" />
        </TableRow>

        <TableRow
            android:layout_marginTop="20dip" >
            <ImageView 
                android:layout_height="wrap_content" 
                android:layout_width="wrap_content"
                android:layout_marginLeft="25dip"
                android:layout_marginRight="25dip"
                android:paddingTop="2dip"
                android:src="@drawable/intro_add" />
            <TextView 
                android:id="@+id/intro_TextView_add"
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content"
                android:layout_marginRight="20dip"
                android:text="@string/intro_add" 
                android:textColor="#FFFFFF" />
        </TableRow>

        <!-- ... -->

    </TableLayout>
</ScrollView>

这给了我一个看起来像这样的对话框(细节模糊,对不起):

blurred AlertDialog screenshot

问题在于顶部的大差距(在对话框上方)。我能做些什么来摆脱它或使底部有类似的差距?

2 个答案:

答案 0 :(得分:2)

此处描述了错误:http://code.google.com/p/android/issues/detail?id=11824。即使没有标题或图标,AlertDialog也会为标题/图标面板保留空间。

我认为修复非常简单:它应该将顶部面板布局设置为GONE,就像没有按钮时的按钮面板一样。在此之前,唯一的解决方法是实现自己的Dialog子类。

答案 1 :(得分:-1)

原来这是一个错误(有点)。您必须实现自己的Dialog才能使其正常工作。