gpt4 book ai didi

android - 停止 AlertDialog 中按钮的多行文本

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

我有一个警告对话框,用户可以在其中输入带有“确定”和“取消”按钮的文本。当我在平板电脑上测试时看起来不错,但在我的手机上,按钮上的取消文本被分成两行:能细胞

我的手机上似乎有足够的空间,但文本被打断了。我知道如何在普通按钮上修复此问题,但是当我尝试 alert.getButton 获取按钮时,警报停止一起显示。这是我试过的代码:

这是我的代码:

final AlertDialog alert = new AlertDialog.Builder(getActivity()).create();
final EditText input = new EditText(getActivity());
input.setText(existingName);
alert.setView(input);
alert.setButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {

//do stuff here
}
});

alert.setButton2("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.cancel();
}
});
alert.getButton(1).setMaxLines(1);
alert.show();

最佳答案

确定更改

alert.getButton(1).setMaxLines(1);

alert.getButton(DialogInterface.BUTTON2).setMaxLines(1);

关于android - 停止 AlertDialog 中按钮的多行文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6947557/

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