android:如何添加新行
我有一个非常简单的问题..我正在使用以下代码来编辑选项菜单的标题。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
菜单中不能换行。
检查此LINK,
这与您想要执行的操作相同。
希望这有帮助。
Line breaks are not possible in menu.
check this LINK
this is same as what you are trying to do.
hope this helps.
据我所知,Android 中的字符串可以以 HTML 格式声明。你为什么不尝试一下
From what I remember, strings in Android can be declared in HTML format. Why don't you try