How do I make a link within string resource to be clickable and open a web page when the user clicks it?
<string name="about" translatable="false">
Click <annotation font="lato_bold">.
<a href="https://google.com/">here</a></annotation>
for more information
</string>
I could do this with TextView
but I don't know how to do it with string resources.
Thank You.