gpt4 book ai didi

android - 如何改变程序中AlertDialog的大小?

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

我有一个AlertDialog,我想调整它的大小以适应文本的长度和高度。我的做法如下:

AlertDialog dialog = new AlertDialog.Builder(thisActivity);
dialog.setMessage(curitem.getTitle());
dialog.show();

TextView textView = (TextView) dialog.findViewById(android.R.id.message);
textView.setTextSize(7);
textView.setGravity(1);

我可以更改文本大小和字体。但是我无法调整dialog 的大小。如何使对话框大小恰好适合文本的长度和高度?

最佳答案

你可以试试

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

或您想要的任何其他整数值。

关于android - 如何改变程序中AlertDialog的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22483258/

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