over 8 years ago
Android does not support justification of text,but we can achieve this using loading the text in WebView.
String youtContentStr = String.valueOf(Html
.fromHtml("<![CDATA[<body style=\"text-align:justify;color:#222222; \">"
+ getResources().getString(R.string.app_name)
+ "</body>]]>"));
WebView webView=(WebView)findViewById(R.id.webview);
webView.loadData(youtContentStr, "text/html; charset=utf-8","UTF-8");
String youtContentStr = String.valueOf(Html
.fromHtml("<![CDATA[<body style=\"text-align:justify;color:#222222; \">"
+ getResources().getString(R.string.app_name)
+ "</body>]]>"));
WebView webView=(WebView)findViewById(R.id.webview);
webView.loadData(youtContentStr, "text/html; charset=utf-8","UTF-8");
Thanks.
0 Comment(s)