如何在 Dialog.alert(textfromxml) 上添加换行符(“\n”)?
这个'\n'不起作用。我还尝试使用 LabelField 和 TextField。结果是一样的:( 我的代码:))
Dialog.alert(errorString);
和我的 xml 行。
1) 检查相机的 IP 地址和端口号。'\n'2) 再试一次
this '\n' doesnt work. Also I tried with LabelField and TextField. Result is same.:(
my code:))
Dialog.alert(errorString);
and my xml line.
1) Check your camera's ip address and port number.'\n'2) Try Again
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我找到了解决方案。
我使用
表示 \n。效果很好。
I found a solution.
I use
for \n. It works good.
这应该有效:
This should work:
如果不起作用,您可以实现自己的Dialog类。只需这样做:
<代码>
Dialog d = new Dialog(Dialog.D_OK,"your message here",Dialog.OK, Bitmap.getPredefinedBitmap(Bitmap.EXCLAMATION), Screen.DEFAULT_CLOSE);
//您可以在此处添加自定义字段,例如 LabelField
d.show();
<代码>
If it doesn't work, you can implement your own Dialog class. Just do like this:
Dialog d = new Dialog(Dialog.D_OK,"your message here",Dialog.OK, Bitmap.getPredefinedBitmap(Bitmap.EXCLAMATION), Screen.DEFAULT_CLOSE);
//you can add customized fields here, like a LabelField
d.show();