我正在使用 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>
我怎样才能做到这一点?
谢谢!