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 ?
Asked
Active
Viewed 1,370 times
0
-
1Why not use `css` or ` – jyoonPro Oct 16 '14 at 15:11
1 Answers
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
-
call this after your webpage is loaded, and it will attach this JS to your content. – Sanchit Oct 16 '14 at 15:14
-