webview Questions
3
Solved
I have added a webview plugin (official flutter plugin) for viewing webpages.
One of the webpage has a youtube video playing and when I press the home button and the app goes into background. But ...
1
After the latest release of chrome this month, webview is crashing on exit from webview everytime. Is anyone else noticing it? Removing webview.destroy() doesn't make a difference.
I/WebViewFactory...
5
Solved
I have HTML5 based web application i want it to integrate with WebView ,So does android webview browsers support html5 features?
3
I am writing a small reporting app using wxPython (wxAUI). I want to render my data as HTML, to be displayed in a WebView 'widget'. I am looking for a sample 'hello world' snippet that will show ho...
3
I am currently working on Windows 10 UWP App and facing an issue with WebView that when I have less HTML content, I am getting more height in javascript. My Code is as follows
WebView webView = ne...
Vineyard asked 7/10, 2016 at 16:43
5
I have dynamic URL that I load into a webview. I have used a WebChromeClient to handle java script events as I need to redirect the user depending on the events from the javascript in onJsAlert(). ...
Dominicadominical asked 28/3, 2019 at 13:57
3
I'm trying to load/reference images from the app's assets folder from within a HTML page in a WebView. Unlike in most of the examples the HTML page itself is not located in the assets folder but is...
Commerce asked 4/10, 2010 at 11:55
14
Solved
I want to show Loading first before the web view data displayed on the screen. How can do that?
This is my code:
class WebDetailPage extends StatelessWidget {
final String title;
final String web...
6
I have a YouTube video embedded in a React Native WebView. I'm using the react-native-android-fullscreen-webview-video library for Android which works well in both portrait and landscape mode, but ...
Unread asked 5/4, 2019 at 19:34
9
Solved
I created my own WebView and set the WebChromeClient and WebViewClient objects. When I start this WebView, the HTML form fields react when I touch them (a cursor appears), but they do not get selec...
1
Solved
I am using WebKit and a WKWebView to load a YouTube video into my SwiftUI application. Whenever the YouTube video plays or pauses I get this message printed in the console as a warning. I think it ...
8
Solved
I'm using a webview in my android app, at the moment when the app is started the website is zoomed in quite a lot, i want it to be zoomed out to fit the width of the screen. I currently have this i...
1
Solved
I'm having an issue with Jetpack Compose on Android 12 where I'm attempting to create a WebView whose contents fill the entire screen. For some reason even though the WebView itself seems to comple...
Torras asked 23/1, 2024 at 15:20
5
Currently, OnShouldStartLoadWithRequest is only supported on iOS. A PR to add support for this on Android was closed. If a WebView on Android tries to open a custom URL scheme, the app will crash -...
Starobin asked 25/9, 2016 at 1:1
2
In the iOS WKWebView, is there a way to detect when the website makes a resource request (e.g. an HttpRequest via Ajax)?
In Android, there is a very convenient method "shouldInterceptRequest&q...
Gynophore asked 30/12, 2023 at 18:11
4
Solved
I'm trying to develop a new extension for vscode based on Webview but I am running into problems with posting messages from client to extension. As a starter, I used this repo and I am following th...
Tana asked 21/5, 2019 at 11:37
3
Solved
How do I enable cookies in a webview?
I tried to use
CookieManager.getInstance().setAcceptCookie(true);
just before calling WebView.loadUrl() and it doesn't work as I get an HTML page error from a...
7
Solved
How can I run Javascript in flutter_webview_plugin? I tried with this:
onPressed: () {
flutterWebviewPlugin.evalJavascript('<script language="JavaScript" type="text/javascript&qu...
Gourde asked 15/5, 2018 at 12:17
9
Solved
I'm trying to use a webview in flutter as my home page for my application. Everything loads just fine, however hitting the back button doesn't send me to the previous web page in the webview, it ju...
Calvert asked 10/9, 2019 at 22:23
6
Solved
I want to post some data to the URL body in Flutter WebView.
So, how can I do it?
7
Solved
I have made a web-view of a website. Now I want to share some data from my web-view to whatsapp app. I was able to open whatsapp web, but my client wants me to open whatsapp application instead of ...
4
By implementation of FlutterWebviewPlugin, I want to show a particular website in a widget but without header and footer.
is this possible in Flutter?
I guess there is a function in FlutterWebviewP...
Hazy asked 13/9, 2018 at 15:40
2
Solved
I have a Webview in which i am trying to load this url
But the webview is blank, i have added internet permission in manifest, tried to load google.com in the same webview and it loads fine.
Trie...
8
Solved
I'm trying to make a app with WebView, but the website is using https, but the content (ex. mp3 file) uses http, so Android Lollipop won't load it because it is "Mixed Content". I tried to use onRe...
Maiamaiah asked 22/8, 2015 at 11:34
17
public void onCreate(Bundle savedInstance)
{
super.onCreate(savedInstance);
setContentView(R.layout.show_voucher);
webView=(WebView)findViewById(R.id.webview);
webView.getSettings().setJavaScr...
Unconventionality asked 14/9, 2011 at 12:11
© 2022 - 2025 — McMap. All rights reserved.