如何在 Dialog.alert(textfromxml) 上添加换行符(“\n”)?

发布于 2024-10-05 01:45:03 字数 177 浏览 3 评论 0原文

这个'\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 技术交流群。

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

发布评论

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

评论(3

半葬歌 2024-10-12 01:45:03

我找到了解决方案。

我使用 表示 \n。效果很好。

I found a solution.

I use for \n. It works good.

裸钻 2024-10-12 01:45:03

这应该有效:

String errorString = 
    "1) Check your camera's ip address and port number.\n2) Try Again";

Dialog.alert(errorString);

This should work:

String errorString = 
    "1) Check your camera's ip address and port number.\n2) Try Again";

Dialog.alert(errorString);
离笑几人歌 2024-10-12 01:45:03

如果不起作用,您可以实现自己的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();

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