All Questions
15,041 questions
0
votes
0
answers
18
views
Platform Android, JavascriptInterface not work after Talkback opened
I use the android WebView and there are some @JavascriptInterface functions,but after I open the Talkback, the JavascriptInterface functions don't work. That's why? How to resolve the problem? - -
0
votes
0
answers
54
views
How to open chrome forcibly instead of open webview when I click on my url in any app
My problem:
I have a service with web interface. The customers receives a link to the web page and click's on it.
Depends on a customer platform - the link must be opened in a different way:
in case ...
2
votes
1
answer
51
views
CORDOVA: I can DOWNLOAD 30 MB, but not 60 MB ? (cordova-plugin-file)
I am using this implementation, and I can download up to ~30 MB of data on my A53 Samsung Android device with it:
// File download
function downloadResult(taskId) {
cordova.plugin.http....
0
votes
0
answers
28
views
DNA Editor App DOM UI Rendering not loading
enter image description here
This is how it's supposed to look and functions perfectly fine in my browser, but I've have had to start over and rebuild it from scratch for Android Webview since it ...
0
votes
0
answers
36
views
Android webview keyboard covers the text input when focus
I am making an android app that utilizes Webview and run html which connects to an API to fetch data. Everything is good and working well but I need help to fix the keyboard covering the input when ...
0
votes
0
answers
31
views
SwipeRefreshLayout with Webview + nested scrolling
I'm trying to use SwipeRefreshLayout with WebView.
I'm facing the problem where in the middle of page, when user scrolls down, unwanted refresh kicks in.
Also when there are nested scrolling and ...
1
vote
1
answer
74
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',
...
0
votes
0
answers
27
views
How to Auto-Redirect My Website from Android WebView Apps to an External Browser?
Attempt 1: Using googlechrome://
if (/android/i.test(navigator.userAgent)) {
window.location.href = `googlechrome://${window.location.href.replace(/^https?:\/\//, '')}`;
}
Result: The link stays ...
0
votes
0
answers
42
views
Flutter WebView File Download Not Working
I have a Flutter app that uses flutter_inappwebview to display web content, and I want to enable file downloads (especially PDFs) inside the WebView. I am using flutter_downloader for this purpose.
...
1
vote
0
answers
62
views
What is the minimum version of Android System WebView that supports Google maps now?
Our application integrates a web version of Google maps for devices without Google services. The page displaying maps in the application imports the following JavaScript: https://maps.googleapis.com/...
1
vote
1
answer
85
views
How to Enable WebRTC H.265 Support in Android WebView
I checked Google's official Chromium documentation, and it mentions that H.265 support in WebRTC is currently in development. It has been released under 'Implemented behind flags' status: Chromium ...
0
votes
0
answers
32
views
Android WebView Theme Issue: Forced Light or Dark Mode lead Mixed UI Components After WebView Closure
I am experiencing an issue in my Android app related to using WebView in a fragment while forcing a theme mode opposite to the system's current mode. When the system is in dark mode, I force light ...
0
votes
0
answers
24
views
How to Extract YouTube Video URL When Playing Suggested Video in WebView?
I am trying to extract the YouTube video URL in an Android app when the user clicks on a suggested video inside a WebView. The WebView is displaying a YouTube video, and I want to capture the video ...
0
votes
1
answer
20
views
How to load resources coming from the webview in android?
Opening PDFs coming from another web link. PDFs are supposed to be downloaded from the link and then an external app is used to open to PDF. This applies for all the resources.
.xlsx .pdf .jpeg
0
votes
1
answer
52
views
Android WebView Spellchecker Background Color Issue in Dark Mode
I’m facing an issue with the spellchecker (text suggestions) in Android WebView when using dark mode.
In light theme, the spellchecker popup has a white background with
black text, which is correct.
...