具有自定义视图的AlertDialog不会“调整大小”

时间:2013-02-17 13:00:13

标签: android android-layout android-alertdialog android-dialog

我遇到了AlertDialog和自定义内容/视图的问题。简单地说,当打开软键盘时,AlertDialog不会自行调整大小。以下屏幕截图显示了我的问题以及我想要实现的目标:

当前行为(左)&通缉行为(右)

Current behavior wanted behavior

我知道还有其他一些在SO上有类似问题的主题。不幸的是,所提供的解决方案都不适用于我。按照我的示例代码:

XML

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        </EditText>
    </LinearLayout>

</ScrollView>

Java - CustomAlertDialog.class

public class CustomAlertDialog extends AlertDialog{

    private Context context;

    public CustomAlertDialog(Context context) {
        super(context);
        this.context = context;
    }

    public void buildDialog(){
        LayoutInflater inflater = getLayoutInflater();
        View layout = inflater.inflate(R.layout.dialog_content, null);
        builder = new AlertDialog.Builder(context);
        builder.setTitle("EditText");
        builder.setView(layout);
        builder.setPositiveButton("Ok", new OnClickListener() {

            @Override
            public void onClick(DialogInterface arg0, int arg1) {
                dismiss();
            }
        });
        builder.create();
    }

    public void showDialog(){
        builder.show();
    }
}

上面的类/函数在我的Main.java类中按下按钮调用

btnAlertDialog.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            CustomAlertDialog dialog = new CustomAlertDialog(Main.this);
            dialog.buildDialog();
            dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
            dialog.showDialog();
        }
    });

我尝试过以下事项:

将滚动条添加到LinearLayout中,如下所示

android:scrollbars="vertical" 
android:scrollbarAlwaysDrawVerticalTrack="true"

结果:没有改变

为对话框设置标志:

dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

结果:没有改变

将自定义样式应用于AlertDialog:

<style name="AlertDialog" parent="@android:style/Theme.Holo.Light">
        <item name="android:windowFullscreen">false</item>
</style>

爪哇

builder = new AlertDialog.Builder(context, R.style.AlertDialog);

这很有用。不幸的是,它产生了一些问题,你可以在下面的截图中看到

Custom style - new problem

我感谢任何帮助,因为我几天来一直在努力解决这个问题。谢谢!

解决方案

我现在使用以下方法在CustomAlertDialog.class中创建对话框。请参阅我在nandeesh的答案下面的评论,以获取有关它之前无效的详细信息。

public void startDialog(){
        LayoutInflater inflater = getLayoutInflater();
        View layout = inflater.inflate(R.layout.dialog_content, null);
        builder = new AlertDialog.Builder(context);
        builder.setTitle("EditText");
        builder.setView(layout);
        builder.setPositiveButton("Ok", new OnClickListener() {

            @Override
            public void onClick(DialogInterface arg0, int arg1) {
                dismiss();
            }
        });
        AlertDialog aDialog = builder.create();
        aDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
        aDialog.show();
    }

2 个答案:

答案 0 :(得分:7)

我不确定你在哪里做了setSoftInputmode 但不是

builder.show();

使用

AlertDialog mDialog = builder.create();
mDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
mDialog.show();

如果这不起作用,那么请发布CustomAlertDialog类

答案 1 :(得分:0)

显然,这个问题与构建Dialog的方式无关,如果使用自定义View等,则问题是windowSoftInputMode。

除了为Window更改它之外,更改Activity的AndroidManifest.xml中的windowSoftInputMode应该可以解决问题。

确保对话框中的视图是ScrollView。