Justify text in textview

前端 未结 7 2152
有刺的猬
有刺的猬 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:51

    use this dependency for justifytext library

    compile 'com.uncopt:android.justified:1.0'
    

    and sync gradle

    To justify text in text view, use this in your XML:

    
    

    and use this in the Java class:

    JustifiedTextView myMsg = (JustifiedTextView)findViewById(R.id.t1);
    myMsg.setText("ur text data for justify");
    

提交回复
热议问题