gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:55:00 26 4
gpt4 key购买 nike

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

我测试过

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);

最佳答案

我也一直在解决这个问题,最后找到了更好的解决方法。

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

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

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

<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 后对其进行充气。自定义view膨胀后,通过GlobalLayoutListener获取自定义view的宽度,设置布局宽度。

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);
}
});

关于android - 设置自定义对话框的宽度以包装内容android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21258876/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com