I have a textview that has android:justificationMode="inter_word"
to justify text in the TextView.
This is working fine. But now, when I have a URL in my TextView's text, then I want to open the browser on clicking that URL. So to achieve this, I have added android:autoLink="web"
, but if I am doing this, then text justification stops and link clickable starts working.
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:justificationMode="inter_word"
android:autoLink="web"
android:text="" />
note:
I have also tried,
- programmatically in activity by
textview.setMovementMethod(LinkMovementMethod.getInstance());
- in XML
android:linksClickable="true"
But, none of these is able to achieve both the feature (clickable links with justification text)
Do let me know if someone has achieved both things, Justification of text in TextView with clickable links in it.
I have been looking for a solution for a long time to make justification and hyperlink work together, and this works for me.
You can then use it as below.