所以在Android中,我想證明文字的合理性,所以我決定使用Webview.It工作正常,但唯一的問題是我的應用程序的背景不是白色的。所以每當我看到文字時,它總是有一個白色的背景。那麼我可以添加一個body標籤來使它能夠改變背景顏色嗎?需要Android字符串HTML幫助
String text = "<html><body style=\"text-align:justify\"> %s </body> </Html> ";
// I want to include a body tag above which will make the background this color = #e6e6e6
String data = "My Text";
WebView webView = (WebView) findViewById(R.id.WebView);
webView.loadData(String.format(text, data), "text/html", "utf-8");