gpt4 book ai didi

android - 在 android 中对齐 AlertView 中的文本

转载 作者:太空宇宙 更新时间:2023-11-03 12:23:46 25 4
gpt4 key购买 nike

我的 alertDialog 中有一个 4 行文本,我想在不提供任何自定义布局的情况下将其居中对齐。这可能吗。

最佳答案

你可以的。通过在您的代码中设置标准对话框的消息文本元素的重力,将标准 AlertView 对话框居中对齐,如下所示:

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Title");
builder.setMessage("Message");
builder.setPositiveButton("OK", null);
AlertDialog dialog = builder.show();
// the following line gets a handler to the message element inside the dialog.
TextView messageText = (TextView)dialog.findViewById(android.R.id.message);
// and now all that is needed is changing the gravity ...
messageText.setGravity(Gravity.CENTER);

关于android - 在 android 中对齐 AlertView 中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7816616/

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