elements in graphical user interfaces that host HTML content. For Android, please look at the android-webview tag. For iOS, look under uiwebview.
0
votes
0answers
15 views
Display Image in webview form local html Image with CSS in C#
In the local HTML page if I have image means,
I am getting image "src" value & replacing with Base64 & getting that XmlDocument value and then loading in Webview.
xmlDoc.GetXml();
string ...
0
votes
0answers
6 views
Mac OS/WebView: How to enable/disable specific plugins into a WebView implementation?
Is it possible to enable/disable specific plugins into a WebView implementation?, if yes, how?
I'm aware of the setPlugInsEnabled instance method. But this one enables/disables all of them. I just ...
0
votes
0answers
6 views
how to convert a local webapp to a standalone webkit app?
I have a webapp that is designed to run locally (it doesn't need an internet connection to run, it just connects to a local websocket server). I would like to detach this app from the browser and have ...
0
votes
1answer
24 views
How to open files in a UIWebView?
I just make a file browser for iOS, I just need to know how to open any kind of file in a UIWebview. I think the webview can open any kind of file, that's because I chose to use a UIWebView to view ...
0
votes
1answer
14 views
Android get image from webView
I have a webView that loads page. I want to take one picture from this page and show it under the webView. Is there any way I can access this image?
I didn't know that it needs more explanation, ...
-3
votes
2answers
24 views
Has anyone tried to embed a flash into a webpage so it can be displayed to anyone
Has anyone tried or is it possible to embed a flash into a webpage so it can be displayed in an android that doesnt have flash player installed?
An example of what I am talking about is googles:
...
0
votes
1answer
12 views
on text selection at webView
I need to catch on text selection event in webview. In standart webview when I select text appears action bar with menu. Can I get on select listener or override onselect actionbar menu?
0
votes
0answers
10 views
Defaul element style in webView
I'm trying to display the web page. In Chrome select element in this page looks like this:
Chrome screen
But in my webView element looks like this:
WebViewScreen
This like default javafx control. ...
0
votes
0answers
17 views
PhoneGap: Add CordovaWebView to DroidGap
I would like to embed a CordovaWebView to the class which extends DroidGap.
TestActivity.java:
public class TestActivity extends DroidGap {
private static CordovaWebView webView;
public void ...
1
vote
0answers
23 views
Android bug? WebView FASLE -> FALSE in LogCat
While working with WebView I get the following information in LogCat while touching the surface (scrolling webpage) inside of WebView.
06-12 16:59:03.385: V/webview(4168): ...
0
votes
0answers
14 views
Android WebView Hardware Acceleration Artefact Workarounds
So there's a known bug with WebView hardware acceleration in Android,
see here for example: https://code.google.com/p/android/issues/detail?id=17352
Disabling hardware acceleration is not an option ...
0
votes
1answer
18 views
Ajax queries in webview
My problem is that I do not know if there is any listener that checks if ajax requests in my webview have finished. On page that I have opened in webview (it is not my page, so I cannot modify ...
0
votes
1answer
20 views
Change background, fontColor of page loaded into WebView
Is it possible to change the background of website loaded into WebView? I think it is not possible, but for example webView.getSettings() allows to set FontSize of WebView, so maybe there is any way ...
0
votes
1answer
19 views
Using GOOGLE TRANSLATE in WebView. “Desktop” working, “Mobile” not working
I managed to use translate.google.com by passing arguments into the url and then loading page into my webView. However, passing arguments works only if I set the page into "desktop" mode
...
0
votes
0answers
11 views
When WebView is added to a specific view in NSWindow, :hover stops working. How can I fix this?
If I create a WebView and add it to NSThemeFrame like so:
Let window be the NSWindow instance I'm adding to:
NSView * themeFrame = window.contentView;
[themeFrame.superview addSubview:myWebView];
...