使用的Firebase \ n show squrebox不显示新行

时间:2019-06-21 05:19:17

标签: android firebase

在Firebse中,我使用\ n来显示新行,但未显示正确的文本     输出中的方形框。

Questoin:"A: せんせいは( )ですか。\n
B: はい、にほんじんです。"

In Dialog text first line :"A: せんせいはにほんじんですか。\n
B: はい、にほんじんです。"



in Dialog Text English: "A: Is the teacher Japaense?\n
B: Yes, she is Japanese."

听到的是firbase数据库映像enter image description here

enter image description here

2 个答案:

答案 0 :(得分:0)

如果您手动提供文本,则应像下面那样进行操作,而不要输入\n

提问:

    "A: せんせいは( )ですか。
     B: はい、にほんじんです。"

在对话框文本的第一行:

    "A: せんせいはにほんじんですか。
     B: はい、にほんじんです。"

对话文本中的英文:

    "A: Is the teacher Japaense?
     B: Yes, she is Japanese."

答案 1 :(得分:0)

替换字符串,如下所示。

label.text = yourString.replacingOccurrences(of: "\\n", with: "\n")