7,426 questions
1
vote
1
answer
156
views
Exceptions in WebView constructor
My Android Java app shows some HTML content, but not on the initial screen. To make initial app loading faster, the WebView is initialized dynamically when needed:
m_TheEntry = new WebView(Ctxt); //...
0
votes
0
answers
94
views
FullScreen API Not Working in Android Studio Virtual Phone
I've recently been working on porting an HTML5 video game I built for Android devices as an app. I am using Android Studio to assist with development.
After some trial and error, I've been able to get ...
8
votes
0
answers
864
views
Resources Not Found Exception in Android WebView crash mainly on Android 16
I'm getting frequent crashes when initializing a WebView in my Android app, specifically on Android 16 (API 35). The crash occurs during WebView creation before any URL is loaded.
What I've Tried
...
0
votes
0
answers
129
views
Turnstile on Android Version 9 with webview 66.0.3359.158
(sorry for poor english)
So, I'm working on integrating cloudflare turnstile into a flutter application that is used in Kiosk machine. The machine has android version 9 and webview version 66.0.3359....
1
vote
1
answer
127
views
Web NFC API request denied error on Android WebView
When an NFC tag is being read by the Web NFC API through Android WebView, the following error is shown:
NotAllowedError: Failed to execute 'scan' on 'NDEFReader': NFC permission request denied.
...
0
votes
0
answers
72
views
flutter webview on Android - I cannot create dynamically iframes
I'm trying to integrate Kommunicate Web SDK into my Flutter app, but facing issues with dynamic iframe creation specifically on Android.
I do like this
@override
Widget build(BuildContext context) ...
0
votes
1
answer
81
views
No audio in WebRTC over WebView in Android PiP mode
I have an Android Webview that has a meeting running inside of it.
When I'm in full-screen mode, everything works perfectly.
However, when I enter the PiP mode, I lose the audio. Participants can hear ...
0
votes
0
answers
58
views
Why the content of webView shake when I change the height of the parent of the webview?
I am developing an Android project by java. First, I change the webView's parent view height to half of the screen. Then when user click a button, the webView's parent view will become full screen by ...
0
votes
0
answers
114
views
How can i download video on my webview , simple video download is working but when try to download from Pexels.com it failed
Below is my Android code. It is able to download images, document, and videos.
Problem:
Some platforms like Pexels.com keep their videos as parts or stream how to download them?
webView....
0
votes
0
answers
44
views
I have an android app with "webview" of my website. While i do payments using this app, the otp page doesnt load, a month back it worked,now it is not
my website on browser works to get the otp and the transaction is successful. but the same on andorid app doesnt work.
The blank page in Easebuzz/Eazepay payment flow inside a WebView (both iOS and ...
0
votes
0
answers
86
views
Android WebView: First tap on <label for="..."> focuses input but does not open soft keyboard (IME)
I’m developing a hybrid Android app using Capacitor (WebView). I’ve run into a strange bug that I cannot reproduce in Chrome browser, but only in Android’s WebView:
When the user taps a “label for”, ...
0
votes
0
answers
48
views
How to Detect the Used of Webviews (or ChromeTab) in Android Project Using Script
I was trying to find a way to quickly detect if there's real WebView used in an Android project. I created a script below.
The script will check through both Java and Kotlin codes.
(
git grep -H -E '...
0
votes
2
answers
995
views
Android 15/API 35 Keyboard covering input fields after targetSdkVersion upgrade - solutions?
My HTML/JS/Tailwind website runs in webview packaged as an APK. Since upgrading to API 35+, the native keyboard covers the input fields of my website where it used to push it up. What makes this even ...
0
votes
0
answers
54
views
Implement Custom context menu Copy / paste / Select all functionality in webview android
I am implementing a custom clipboardManager which does not allow copy / paste operation from other apps . Text copied in the app can be pasted only inside the app .
I am able to do it in TextView / ...
1
vote
1
answer
145
views
How to get fetch TOWARDS localhost to FUNCTION on CORDOVA Android
My question is simple.
I make a call using fetch in my CORDOVA app like so, from the ./www/js/index.js script:
const response = await fetch('http://localhost:3000/poc3/convert', {
method: 'POST',
...