5

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

当前行为(左)和想要的行为(右)

当前行为 想要的行为

我知道在 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);

这行得通。不幸的是,它产生了一些问题,您可以在以下屏幕截图中看到

自定义样式 - 新问题

我感谢任何帮助,因为我已经为这个问题苦苦挣扎了好几天。谢谢!

解决方案

我现在使用以下方法在我的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();
    }
4

2 回答 2

9

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

builder.show();

采用

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

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

于 2013-02-20T14:31:29.707 回答
0

显然,这个问题与对话框的构建方式无关,如果您使用自定义视图等,则问题是 windowSoftInputMode。

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

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

于 2013-02-19T14:13:03.323 回答