Skip to main content

Javascript overlay redirect not displaying properly on Android WebView

I am trying to implement a custom browser based on WebView. It works great on most websites, but on https://smittenkitchen.com/ I maybe missing something critical:

It loads and displays the homepage fine, but when typing a search term (e.g. "carrot"), it first lands on an ugly looking "search form" page, then it displays an blank overlay! (no trace of that overlay display/redirect in Logcat!)

On any standard web browser it first lands on that ugly looking "search form" page, then after 0.5-2 seconds it displays an overlay with the search results gradually being populated.

I am trying to understand what I am missing in my implementation:

In MyWebViewClient, I override:

  • onPageStarted
  • onPageFinished
  • shouldOverrideUrlLoading
  • onPageCommitVisible

However, the first 3 methods (onPageStarted, onPageFinished, shouldOverrideUrlLoading) only log a Logcat message when called, they do not do anything custom.

The only overridden method that does something custom (onPageCommitVisible) is only calling WebView's loadUrl() with:

javascript:window.HTMLOUT.processHTML(document.getElementsByTagName('html')[0].innerHTML)

facilitated by:

webView.addJavascriptInterface(new MyJavascriptInterface(this, webView), "HTMLOUT");

Note that shouldOverrideUrlLoading is never called by the Android WebView framework, despite the apparent redirect (perhaps because it is a client-side redirect, not changing the URL?)

@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
    Log.d("", "url: " + url + ", view: " + view.getUrl());
}
@Override
public void onPageFinished(WebView view, String url) {
    Log.d("", "url: " + url + ", view: " + view.getUrl());
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest webResourceRequest) {
    Log.d("", "webResourceRequest: " + webResourceRequest.getUrl() + ", view: " + view.getUrl());
    return false;
}
@Override
public void onPageCommitVisible(WebView view, String url) {
    super.onPageCommitVisible(view, url);
    view.loadUrl("javascript:window.HTMLOUT.processHTML(document.getElementsByTagName('html')[0].innerHTML)"); // convert all javascript to HTML
    Log.v("", "url (passed): " + url + " < view.getUrl(): " + view.getUrl());
}

The relevant Logcat snippet is as follows:

11:12:03.716                           D   url: https://smittenkitchen.com/, view: https://smittenkitchen.com/ (called from: MyWebViewClient.onPageFinished) 
11:12:03.988                           D   url: https://smittenkitchen.com/, view: https://smittenkitchen.com/ (called from: MyWebViewClient.onPageStarted)
11:12:05.646                           E   net::ERR_CONNECTION_REFUSED(-6) on request: https://ssc.33across.com/api/v1/hb?guid=cYCh20L9Or64olaKj0P0Le, https://smittenkitchen.com/ (called from: MyWebViewClient.onReceivedError)
11:12:05.787  MyWebView                V   javascript:window.HTMLOUT.processHTML(document.getElementsByTagName('html')[0].innerHTML); (called from: MyWebView.loadUrl < MyWebViewClient.onPageCommitVisible)
11:12:05.790  MyWebViewClient          V   url (passed): https://smittenkitchen.com/ < view.getUrl(): https://smittenkitchen.com/ (called from: MyWebViewClient.onPageCommitVisible)
11:12:08.097                           D   url: https://smittenkitchen.com/, view: https://smittenkitchen.com/ (called from: MyWebViewClient.onPageFinished)
11:12:23.824                           D   url: https://smittenkitchen.com/?s=carrot, view: https://smittenkitchen.com/?s=carrot (called from: MyWebViewClient.onPageStarted)
11:12:24.083  MyWebView                V   javascript:window.HTMLOUT.processHTML(document.getElementsByTagName('html')[0].innerHTML); (called from: MyWebView.loadUrl < MyWebViewClient.onPageCommitVisible)
11:12:24.085  MyWebViewClient          V   url (passed): https://smittenkitchen.com/?s=carrot < view.getUrl(): https://smittenkitchen.com/?s=carrot (called from: MyWebViewClient.onPageCommitVisible)
11:12:25.176                           E   net::ERR_CONNECTION_REFUSED(-6) on request: https://ssc.33across.com/api/v1/hb?guid=cYCh20L9Or64olaKj0P0Le, https://smittenkitchen.com/?s=carrot (called from: MyWebViewClient.onReceivedError)
11:12:26.583                           D   url: https://smittenkitchen.com/?s=carrot, view: https://smittenkitchen.com/?s=carrot (called from: MyWebViewClient.onPageFinished)

Any idea what I could be missing in my implementation so that my WebView-based browser displays overlays like Chrome does?

Via Active questions tagged javascript - Stack Overflow https://ift.tt/rH9ija7

Comments

Popular posts from this blog

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console...

How to split a rinex file if I need 24 hours data

Trying to divide rinex file using the command gfzrnx but getting this error. While doing that getting this error msg 'gfzrnx' is not recognized as an internal or external command Trying to split rinex file using the command gfzrnx. also install'gfzrnx'. my doubt is I need to run this program in 'gfzrnx' or in 'cmdprompt'. I am expecting a rinex file with 24 hrs or 1 day data.I Have 48 hrs data in RINEX format. Please help me to solve this issue. source https://stackoverflow.com/questions/75385367/how-to-split-a-rinex-file-if-i-need-24-hours-data