I have an EditText in my app. I tried to use JUSTIFICATION_MODE_INTER_WORD (https://developer.android.com/reference/android/text/Layout#JUSTIFICATION_MODE_INTER_WORD) To make it's text justified:
editor.setJustificationMode(JUSTIFICATION_MODE_INTER_WORD);
It's not working at all, while it's working on simple TextView control:
textView1.setJustificationMode(JUSTIFICATION_MODE_INTER_WORD);
It's not documented whether EditText supports justification or not?
I have set my minimum OS to 28, still not working.
Any suggestion on how to justify my editor? No more rich edit features I need.