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
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");