0

I'm getting html from the network and show in the webview. in default my html has some link that show in the webview with blue color. How can I Change the color of this to the black ?

user3453159
  • 151
  • 1
  • 3
  • 13

1 Answers1

0

You can just add some custom CSS/ JS to do this. Just create your own JS like :

webview.loadUrl("javascript:(function() {
// Do some stuff like color change, add some CSS
})()");
Sanchit
  • 460
  • 3
  • 14