Hello all,
we are using xwalk core apis in our project in order to get a better android
webview than os native version. Thanks you for this great project.
I would like to add parameters in url to setup the site ?numMag=XXX
on standard android webview we are using shouldOverrideUrlLoading to change url
and return the parent method
We try do the same in xwalk with shouldOverrideUrlLoading and
shouldInterceptLoadRequest in XWalkResourceClient but it doesn't override url.
Here is the piece of code :
if (mOverride) {
Uri.Builder builder = Uri.parse(url).buildUpon();
builder.appendQueryParameter("numMag", mNumSite);
String newUrl = builder.build().toString();
Log.d("Override", newUrl);
}
return super.shouldOverrideUrlLoading(xWalkView,newUrl);
what is expected is that the webview loads url + "?numMag=XXX" but it loads
only original url.
do you have any idea ?
we are working with v16 (yeap an old one)
Thanks you.
Vincent.
_______________________________________________
Crosswalk-help mailing list
[email protected]
https://lists.crosswalk-project.org/mailman/listinfo/crosswalk-help