如何设置AlertDialog中的CENTER标题?

发布于 2024-12-09 02:24:04 字数 600 浏览 0 评论 0原文

可能的重复:
Android 上的自定义对话框:如何使其标题居中?

我有代码:

     return new AlertDialog.Builder(getActivity())

            .setTitle("Warning!")
            .setMessage("message!")
            .setPositiveButton("yes ",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) {

等等... 如何 .setTitle("Warning!") 设置到 CENTER?

Possible Duplicate:
Custom dialog on Android: How can I center its title?

I have code:

     return new AlertDialog.Builder(getActivity())

            .setTitle("Warning!")
            .setMessage("message!")
            .setPositiveButton("yes ",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) {

etc...
how .setTitle("Warning!") set to the CENTER?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最舍不得你 2024-12-16 02:24:04

您无法将标题置于默认警报对话框的中心。

您将需要创建一个自定义对话框以使标题居中。

此处的答案描述了它是如何实现的完毕。

You cannot center the title in the default alert dialog.

You will need to create a custom dialog in order to center the title.

The answers here describe how it can be done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文