操作 webview 控件中加载的 HTML
我有一个 webview 控件,我正在从网站加载页面。我想在网页加载后将 CSS 文件包含到该网页中。有什么方法可以访问 webview 中加载的内容吗?
我无法控制该网站,因此无法更改该网站的代码。
I have a webview control to which i am loading a page form a website. I want to include a CSS file to the webpage once it is loaded. Is there any way i can get accesses to the content that is loaded in the webview?
I have no control over the website, so changeing the code there is not an option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 loadUrl 方法从 java 执行 javascript。
之后,您可以使用 javascript 方法设置 css
您可以在此处的 WebViewDemo 应用程序中找到从 java 代码执行 javascript 的代码示例
http://code.google.com/p/apps-for-android/source/browse/#svn/trunk/Samples/WebViewDemo
You can execute javascript from java by using loadUrl method.
Afterwards you can set css by using javascript method
You can find a code sample to execute javascript from java code at WebViewDemo application here
http://code.google.com/p/apps-for-android/source/browse/#svn/trunk/Samples/WebViewDemo