gpt4 book ai didi

android - 我的自定义警报对话框比需要的要高得多

转载 作者:行者123 更新时间:2023-11-30 02:02:05 25 4
gpt4 key购买 nike

基本上我的 AlertDialog 中有一个 RecyclerView(我已经尝试了 AppCompat 一个和来自 here 的那个)并且列表只有几个items 对话框仍然尽可能高。我可以做些什么来解决这个问题吗?

我的布局是这样的:

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

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></android.support.v7.widget.RecyclerView>
</LinearLayout>

我将它添加到 AlertDialog 中,如下所示:

LayoutInflater myLayout = LayoutInflater.from(context);
final View dialogView = myLayout.inflate(R.layout.list, null);
dialog.setView(myLayout);

我怎样才能让它成为wrap_content

最佳答案

Here是我发现的另一个类似问题。使用@PiyushMishra 的解决方案:

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

lp.copyFrom(alertDialog.getWindow().getAttributes());
lp.width = 150;
lp.height = 500;
lp.x=-170;
lp.y=100;
alertDialog.getWindow().setAttributes(lp);

我能够控制对话框的大小。您可以对此发挥创意,并根据列表项的数量确定所需的大小。

很抱歉,我不确定如何将对话框设置为 wrap_content。如果使用自定义对话框而不是 AlertDialog,您可能会很幸运。

关于android - 我的自定义警报对话框比需要的要高得多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31303577/

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