设置自定义对话框的宽度以包装内容android

时间:2014-01-21 12:59:48

标签: android dialog width

我想设置自定义对话框的宽度以包装内容 但它总是填满屏幕的所有宽度

我已经测试了这个

android.view.WindowManager.LayoutParams params = mydialog.getWindow().getAttributes();
params.width = android.view.WindowManager.LayoutParams.WRAP_CONTENT;
mydialog.getWindow().setAttributes((android.view.WindowManager.LayoutParams) params);

那个

mydialog.getWindow().setLayout(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

6 个答案:

答案 0 :(得分:4)

我也很难解决这个问题,并最终找到了解决这个问题的更好方法。

这是解决方法。在你的代码中

mydialog.getWindow().setLayout(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); 

这不起作用,因为ProgressDialog的默认布局具有match_parent和左右边距。要调整ProgressDialog的大小,您需要一个自定义视图,如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:background="@android:drawable/dialog_holo_light_frame"
              android:layout_gravity="center_horizontal"
              android:id="@+id/container"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content">

    <ProgressBar
            android:layout_marginTop="20dp"
            android:layout_marginBottom="20dp"
            android:layout_marginLeft="30dp"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/progressBar"/>

    <TextView
            android:layout_marginTop="20dp"
            android:layout_marginBottom="20dp"
            android:layout_marginRight="30dp"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginLeft="20dp"
            android:gravity="center"
            android:id="@+id/message"/>
</LinearLayout>

并在显示ProgressDialog后对其进行充气。在膨胀自定义视图后,使用GlobalLayoutListener获取自定义视图的宽度并设置布局宽度。

mDialog.show();

final Window window = mDialog.getWindow();
window.setContentView(R.layout.custom_progress_dialog); // this is the above code

final LinearLayout dialogContainer = (LinearLayout) window.findViewById(R.id.container);
TextView message = (TextView) window.findViewById(R.id.message);
message.setText("Loading . . .");
dialogContainer.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
    @Override
    public void onGlobalLayout() {
        int width = dialogContainer.getWidth();
        window.setLayout(width, WindowManager.LayoutParams.WRAP_CONTENT);
        dialogContainer.getViewTreeObserver().removeOnGlobalLayoutListener(this);
    }
});

答案 1 :(得分:2)

尝试使用下面的代码来创建包含内容的对话框。 (在对话框布局xml中使用layout_width = WRAP_PATENT,高度为WRAP_CONTENT)

 WindowManager.LayoutParams lp = new WindowManager.LayoutParams();


lp.copyFrom(dialog.getWindow().getAttributes());
        lp.width = WindowManager.LayoutParams.MATCH_PARENT;
        lp.height = WindowManager.LayoutParams.WRAP_CONTENT;
        dialog.show();
        dialog.getWindow().setAttributes(lp);

答案 2 :(得分:1)

我知道这个问题很旧,但是如果某人不想添加WindowManager.LayoutParams,则只需将对话框的主题设置为android.R.style.Theme_Holo_Light_Dialog_NoActionBar,这将使对话框将其宽度包装到其内容中。

示例:

AlertDialog alert = new AlertDialog.Builder(context, android.R.style.Theme_Holo_Light_Dialog_NoActionBar).create();

确保将要充气的布局的高度和宽度都设置为wrap_content

答案 3 :(得分:0)

使用以下属性将样式设置为自定义对话框:

<style name="CustomDialogTheme" parent="@android:style/Theme.Dialog">

    <item name="android:windowIsFloating">false</item>

</style>

答案 4 :(得分:0)

    this.getWindow().setGravity(Gravity.BOTTOM);
    Display display = getWindowManager().getDefaultDisplay();
    int width = display.getWidth() + 150; // deprecated
    int height = display.getHeight() + 50;

答案 5 :(得分:0)

您是否尝试过使用此

mydialog.getWindow().setLayout(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

撰写mydialog.show()后?

那应该有用。