Justify text in textview

前端 未结 7 2141
有刺的猬
有刺的猬 2020-12-08 12:40

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

7条回答
  •  伪装坚强ぢ
    2020-12-08 12:54

    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:

提交回复
热议问题