XWalkView represents an Android view for web apps/pages. it internally uses android.view.SurfaceView for rendering web pages by default, it can't be resized, rotated, transformed and animated due to the limitations of SurfaceView.
Questions tagged [xwalkview]
27 questions
1
vote
0 answers
How to use crosswalk/xwalk in my react-native project?
I want to use crosswalk to solve webview's problem, but I don't know how to add crosswalk into my react-native project.
I wish somebody can give me the details for adding crosswalk and provide an example of the xwalkview's usage.
Thanks!

yuka
- 11
- 1
1
vote
1 answer
Issue with cookie value not being encoded for cordova android app using Crosswalk
SETUP
Currently, I have an cordova android application that uses crosswalk as the webview instead of the default chromium browser. The application itself access a AuthProvider during login and the cookies that are transmitted back from the…

darewreck
- 2,576
- 5
- 42
- 67
0
votes
0 answers
XwalkWebview Media Player is not working for android 4.4.4
I am using an android 4.4.4 with armv7l CPU.
For some reason, other devices with same android version but different CPUs are facing different kind of problems. My only concern is armv7l CPUs.
The Xwalk library version I am using is 23.53.589.4
I am…

Elias Khazzaka
- 163
- 2
- 11
0
votes
1 answer
XWalkView doesn't load downloaded files / local files and returns Assertion Error
I am using this to implement crosswalk webview to my app
implementation 'org.xwalk:xwalk_core_library:23.53.589.4'
And I am setting up the XWalkView like this
private XWalkView xWalkWebView;
....
…

Elias Khazzaka
- 163
- 2
- 11
0
votes
1 answer
Make sure a gradle dependency includes 32bit and 64bit libraries in app bundles
I want to use the xwalk library to embed a chromium webview in the app. This is done via a gradle dependency.
implementation 'org.xwalk:xwalk_core_library:23.53.589.4'
This dependency is an .aar file which is available in a 32bit and 64bit version.…

P.Melch
- 8,066
- 43
- 40
0
votes
1 answer
Crosswalk returns "Crosswalk's APIs are not ready yet" in API Level 26
When running my app with XWalk (version 23.53.589.4) dependency, I am experiencing an exception once I call a XWalk API. Here is what the log looks like.
java.lang.RuntimeException: Crosswalk's APIs are not ready yet
at…

Strauss
- 737
- 7
- 15
0
votes
1 answer
How do I trigger any keycode key events in Android's webview?
For example, what should I do if I want a web page to get an event with a keycode value of - 1?
I tried to use webview.dispatchKeyEvent(...), but if the value of KeyEvent is not in the constant defined by KeyEvent.KEYCODE_XXX, it is converted to…

forDream
- 386
- 1
- 6
- 17
0
votes
0 answers
How to play video fullscreen in crosswalk webview?
I have refer to Playing HTML5 video on fullscreen in android webview to play video on full screen.
But I didn't use the native webview, I used the Crosswalk webview to play the live flv video, which is not a HTML video format. I use flv.js and…

LF00
- 27,015
- 29
- 156
- 295
0
votes
0 answers
Activity has leaked ServiceConnection android.speech.tts.TextToSpeech$Connection@d7f68ca that was originally bound here
I use XWalkView to load a HTML page,when I exit the Activity,I get this message in the logcat.enter image description here
It seems that I bindService, but not unbindService when exit the Activity.I don't know how to get rid of this problem,who can…

jiechengWu
- 1
- 2
0
votes
1 answer
Crosswalk onJsBeforeUnload counterpart
Is there a method wherein I can override the onJsBeforeUnload in XWalkUIClient like this in WebChromeClient?
@Override
public boolean onJsBeforeUnload(WebView view, String url, String message, final JsResult result) {
new…

Aaron
- 2,591
- 4
- 27
- 45
0
votes
1 answer
Android XWalkView Layout problems
I was using XWalkView before in a Fragment with overlay Views in RL.
Now I wanted to use it in an Acitvity, but I get Layout rendering problems and Snackbar isn't working anymore.
XML:

Fintasys
- 1,309
- 1
- 9
- 16
0
votes
4 answers
How to add a Progress in XWalkView
I use XWalkView to load webpage, like this:

LF00
- 27,015
- 29
- 156
- 295