kivy 使用webview加载网页

Posted CrossPython

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kivy 使用webview加载网页相关的知识,希望对你有一定的参考价值。

from kivy.app import App

from kivy.uix.widget import Widget
from kivy.clock import Clock
from jnius import autoclass
from android.runnable import run_on_ui_thread

WebView = autoclass(‘android.webkit.WebView’)
WebViewClient = autoclass(‘android.webkit.WebViewClient’)
#activity = autoclass(‘org.renpy.android.PythonActivity’).mActivity
activity = autoclass(‘org.kivy.android.PythonActivity’).mActivity

class Wv(Widget):
    def __init__(self, **kwargs):
        super(Wv, self).__init__(**kwargs)
        Clock.schedule_once(self.create_webview, 0)

@run_on_ui_thread
def create_webview(self, *args):
    webview = WebView(activity)
    settings = webview.getSettings()
    settings.setjavascriptEnabled(True)
    settings.setUseWideViewPort(True) # enables viewport html meta tags
    settings.setLoadWithOverviewMode(True) # uses viewport
    settings.setSupportZoom(True) # enables zoom
    settings.setBuiltInZoomControls(True) # enables zoom controls
    wvc = WebViewClient()
    webview.setWebViewClient(wvc)
    activity.setContentView(webview)
    webview.loadUrl(‘http://beta.html5test.com’)

class ServiceApp(App):
    def build(self):
        return Wv()

if __name__ == ‘__main__’:
    ServiceApp().run()

  

以上是关于kivy 使用webview加载网页的主要内容,如果未能解决你的问题,请参考以下文章

片段中的Android webView显示空白页面

详解Android WebView加载html片段

android webview不加载片段

带有 Webview 的片段利用硬件后退按钮转到上一个网页

webview中有没有办法获取到网页源代码,加载AJAX后的

WebView 没有加载网页