我面临一个AlertDialog和自定义内容/视图的问题。简单地说,当软键盘打开时,AlertDialog不会调整自身大小。以下截图最能说明我的问题所在以及我想要实现的目标:
当前行为(左)和想要的行为(右)
我知道还有一些类似的话题。不幸的是,所提供的解决方案都不适合我。遵循我的示例代码:
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>

爪哇- 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();
        }
    });

我试过以下方法:
向线性布局添加滚动条,如下所示
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();
    }

最佳答案

我不知道你在哪里做的设置输入模式
但不是

builder.show();

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

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

07-27 16:54