我只是想显示一个长文本(差异段落和标题)。我尝试的是webview.But对齐和字体大小似乎是模糊的..有没有其他方法来显示android中的长段落?任何人都可以帮助我吗?
答案 0 :(得分:2)
您正在将更改作为对象应用于webview。您需要做的是创建一个css文件,并在webview指向的任何页面中使用它。
或
WebView page = (WebView) findViewById(R.id.webview);
String text = "<html><head>"
+ "<style type=\"text/css\">body{color: #ffdec2; background-color: #1F0C01;}"
+ "</style></head>"
+ "<body>"
+ "<p align=\"justify\">"
+ getString(R.string.intro_content)
+ "</p> "
+ "</body></html>";
page.loadData(text, "text/html", "utf-8");