0

我正在使用 webView,我正在编写的代码位于 string.xml 中:

String contact = "<html xmlns=\"http://www.w3.org/1999/xhtml\"> " + "\n" +
        "<body style=\"font-family:Arial;text-align:center;\">" + "\n"  
        context.getString(R.string.contact_text) + "\n"+
        "</body>" + "\n" +
        "</html>";
    webContact.loadDataWithBaseURL(null, contact, "text/html","utf-8", null);

问题是在 R.string.contact_text 我有回车,但没有写出来。

我试过了

      \n
      <br>
      <br></br>

我怎样才能做到这一点?

谢谢!

4

1 回答 1

0

请用<pre>标签包围你的消息它保留空格和换行符。

< pre>你的消息在这里</pre>

于 2013-07-11T07:54:35.023 回答