Is there a way to change the text color for entire webView? If it is could you provide me with some开发者_开发知识库 examples?
A web view displays a web page, so do it the same way you would do it for any web page: define a CSS style (inline or in an external, referenced stylesheet):
* {
color: #FFFFFF;
}
... then the page will be rendered with all text the designated color. This works because the * selector applies to all elements and the color property specifies the text color.
It's easily doable from javascript
精彩评论