In my app first I have textview to show text. Then I want to justify text but in android its not possible to justify text in textview. To justify text I am taking help from
public class Main extends Activity {
WebView webView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webView = (WebView) findViewById(R.id.webview);
String text = ""
+ ""
+ getString(R.string.lorem_ipsum)
+ "
"
+ "";
webView.loadData(text, "text/html", "utf-8");
}
}
main
main.xml: