在没有 Activity 的情况下渲染 HTML
我想渲染一些 HTML 以消除此类渲染的副作用(即 ping 后端服务器)。当我的活动可见时,我当然可以只在 WebView 中显示 HTML。但是,当活动不可见时,我想渲染 HTML 而不显示活动,因为这会对用户造成干扰。
这可以在 Android 上实现吗?
I'd like to render some HTML for the side effects of such rendering (i.e. pinging a backend server). When my activity is visible, of course I can just show the HTML in a WebView. However, when the activity is not visible, I want to render the HTML without showing the activity as this would be disruptive to the user.
Is this possible to do on Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 org.apache.http 了解在不使用 WebView 的情况下处理 HTTP 操作的方法。
您可以将代码放入 Android 服务中,该服务将在不中断用户的情况下运行。
Look at the classes/interfaces in org.apache.http for ways of handling HTTP actions without using a WebView.
You could place your code in an Android Service which will run without interrupting the user.