android:如何添加新行

发布于 2024-11-30 21:51:22 字数 328 浏览 0 评论 0原文

我有一个非常简单的问题..我正在使用以下代码来编辑选项菜单的标题。

MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
menu.findItem(R.id.default_email).setTitle("Default E-mail: "+gmailAc);

我只想在“默认电子邮件”之后添加一个新行..我尝试了 \n 和 \r\n 但它们都不起作用..Android 甚至不支持最简单的格式化命令,这很奇怪.. 谁能在这里指导我。

谢谢大家。

I have a very simple question.. I am using the following code to edit the title of my option menu.

MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
menu.findItem(R.id.default_email).setTitle("Default E-mail: "+gmailAc);

I just want to add a new line after "Default E-mail".. I have tried \n and \r\n but none of them worked.. Its quite strange that android doesn't support even the simplest of the formatting commands..
Can anyone guide me here.

Thanks all.

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

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

发布评论

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

评论(2

淡水深流 2024-12-07 21:51:22

菜单中不能换行。

检查此LINK

这与您想要执行的操作相同。

希望这有帮助。

Line breaks are not possible in menu.

check this LINK

this is same as what you are trying to do.

hope this helps.

往事随风而去 2024-12-07 21:51:22

据我所知,Android 中的字符串可以以 HTML 格式声明。你为什么不尝试一下

<br />

From what I remember, strings in Android can be declared in HTML format. Why don't you try

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