如何调整AlertDialog.Builder的大小?

时间:2016-04-21 18:23:44

标签: android resize alertdialog

我想调整AlertDialog.Builder的大小,但我在这个网站上找不到任何解决方案,我在this one之类的问题上尝试了所有内容,但似乎比我更早#&# 39;我正在寻找,我正在观看的代码现在还没有工作......

ALERTDIALOGBUILDER.JAVA

public class AlertDialogInfo extends AlertDialog.Builder {

public AlertDialogInfo(Context context, String title, String msg) {
    super(context);
    AlertDialog.Builder builder = new AlertDialog.Builder(context,R.style.AppCompatAlertDialogStyle);
    builder.setTitle(title);
    builder.setMessage(msg);
    builder.setNegativeButton("OK",new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            dialog.dismiss();
        }
    });
    }
}

我尝试成为AlertDialog.BuilderAlertDialog来调整大小,但只显示一个没有数据的黑色方块。

问题:如何使用大文本制作AlertDialog.Builder? (需要滚动肯定,因为我不想让对话框像我的屏幕一样大)

已更新

我想要的是这样的东西,我必须通过Bundle更改文本,我从我的AppCompatActivity调用AlertDialog使用FrameLayout(我不知道什么样的Dialog它应该涵盖我需要的东西):

WhatIWant

更新2

最后,我一直试图用下一个代码做我正在寻找的东西,但它仍然没有用......

ALERT_DIALOG.XML

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:scrollbarAlwaysDrawVerticalTrack="true"
    android:scrollbars="vertical">

    <TextView
        android:id="@+id/msg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="14sp" />

</LinearLayout>

MYALERTDIALOG.JAVA

public class MyDialogFragment extends DialogFragment {

public static MyDialogFragment newInstance(String text) {
    MyDialogFragment frag = new MyDialogFragment();
    Bundle args = new Bundle();
    args.putString("TEXT", text);
    System.out.print("Text dentro de newInstance: " + text);
    frag.setArguments(args);
    return frag;
}

@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    String sinopsis = getArguments().getString("TEXT");
    System.out.print("Text dentro de onCreateDialog: " + text);
    return new AlertDialog.Builder(getActivity())
            .setIcon(android.R.drawable.ic_dialog_info)
            .setTitle("TITLE")
            .setMessage(text)
            .setNegativeButton("OK",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int whichButton) {
                            dismiss();
                        }
                    }
            ) .create();
}

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    return inflater.inflate(R.layout.alert_dialog, container);
}
}

ActivityWhereDialogIsBeenCalled.java

........
DialogFragment frag = MyDialogFragment.newInstance("MY MESSAGE");
        frag.show(getSupportFragmentManager(),"TAG");
...............

我的对话框显示使用DEFAULT LAYOUT(它没有滚动视图也没有我感兴趣的大小(只显示为默认的android警告对话框...)

我该如何解决这个问题?我认为这很愚蠢,但令人沮丧......无论如何,谢谢!

2 个答案:

答案 0 :(得分:0)

您应该使用自定义对话框布局,请检查documentation

实际上,您可以通过getDialog().getWindow().setLayout(width, height);调整对话框,只需将其调用onResume(而不是onCreateView)。

您的视图必须嵌套在ScrollView中,请检查post

在Dialog中读取大量文本可能很烦人,最好使用你拥有的所有像素,考虑简单的Activity / Fragment。

答案 1 :(得分:-1)

如果您使用AppCompat支持库23.2.1或更高版本在DialogFragment中使用AlertDialog,则必须将调整大小代码放在 DialogFragment.onStart() 中,否则它将无法正常工作。像这样:

@Override
public void onStart() {
    super.onStart();
    // Method 1
    alertDialog.getWindow().getAttributes().width = 400; // pixels
    alertDialog.getWindow().getAttributes().height = 500; // pixels
    // Re-apply the modified attributes
    alertDialog.getWindow().setAttributes(
           alertDialog.getWindow().getAttributes());

    // Method 2 (alternative)
    alertDialog.getWindow().setLayout(400, 500); // size in pixels
}

更多信息: