Inline WebView Within Your kivy App
When Developing an application, you might often need the user to visit a webview temporary and then return to your application. With python, you can simply use the 'webrowser' module to open up an external browser on android Example: This will open up an external browser, else if there are multiple browser installed, it will open a chooser for the user to select one. But most times, for a better user experience we might not want the user to leave our application and still access the web. Then we might want to make use of an Embedded WebView But wait a minute you might be wondering that your have seen something like this before and how to use it on android on kivy wiki But it doesn't work, Why, taking a look at the code what it basically does is 1). It create a webview 2). Sets a webview client for the webview 3). And loads the webview Ok everything above works well, but the problem arises when you want to go back to the main application. usuall