Tanvir Durlove
Tanvir Durlove

Reputation: 142

HTML <a/> tag implement in Android

Is it possible to implement this HTML snippet in Android? If yes, then how?

<a href="https://icons8.com">Icon pack by Icons8</a>

Upvotes: 1

Views: 51

Answers (1)

Rashwan L
Rashwan L

Reputation: 38833

Almost, this is supported:

<string name="my_site"><a href="https://icons8.com">Icon pack by Icons8</a></string>

Checkout this guide of what you can do with HTML in Android.

Upvotes: 2

Related Questions