Here is my xml code for autolink in textview.
<TextView
style="@style/statusTextList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:textColorLink="@color/hyperlinkColor"
android:linksClickable="true"
android:textColor="#ffffff"
android:autoSizeTextType="uniform"
/>
Code works perfectly fine. Web url in TextView are auto highlighted and able to click. But on clicking in hyperlink it ends with an error.
Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
Note: TextView is placed inside recyclerview item
Question : How to resolve this issue? or how to handle hyperlink click event programmatically?
I can not reproduce your error actually.
You can use code below to handle hyperlink click event programmatically:
Full working code with xml: