Part of the Android API. A View that displays web pages. This class is the basis upon which you can roll your own web browser or simply display some online content within your Activity.

learn more… | top users | synonyms

0
votes
0answers
16 views

How to overcome security exception when loading image?

I am using the following code to load an image from Amazon S3 storage into Android WebView: var img = new Image(); img.crossOrigin = 'Anonymous'; img.src = <my.s3.amazon/image.jpg>; img.onload ...
1
vote
2answers
18 views

Android browser unable to open web page

Hello i am new to android and i written a small app for "Simple web Browser". but my browser is unable to open the page and it's showing error like no network available(Web Page not available) even ...
0
votes
6answers
39 views

HTTP Response in Android - NetworkOnMainThreadException

I want to check the HTTP response of a certain URL before loading into a webview. I only want to load webview if http response code is 200. This is a workaround for intercepting http errors. I have ...
0
votes
2answers
17 views

Android Webview shouldOverrideUrlLoading method

When is shouldOverrideUrlLoading method called? webView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { } }); Is ...
0
votes
0answers
14 views

Delay Between showing data in webview in a dialog

I am showing a html flie from assets into a dialog having webview. During loading I want to show progressbar and on completion I hiding progressbar and showing webview. but there is a delay between ...
0
votes
0answers
12 views

WebView on 4.1.2 device with 4.0.3 target build fails if change target to 4.1.2

I am changing my supported target build as the devices I currently am using now have 4.1.2 installed on them. The following code works fine on a 4.1.2 device when I leave my target build to 4.0.3 but ...
1
vote
0answers
17 views

WebView detect click in iframe

I have a WebView where I am loading a javascript that loads some content. That content is an html with an iframe. It seems any click within iframe is not triggering calls to ...
1
vote
3answers
42 views

How to speed up js loading in jquery mobile?

I need to speed up the ui loading time, of jquery mobile. When I tried using head.js method for loading the js files parallel, it will show the jQuery mobile UI only 3-5 sec, after showing the basic ...
0
votes
0answers
10 views

Marker pin disappears in webview Android?

I'm creating a map app. I'm using leafletJS inside a webview in android. The functionally is great, except from the blue marker which should be om my map. In a PhoneGap application my marker shows, as ...
0
votes
0answers
26 views

How to enable pinch zoom on a web view loading a url with pdf(Android)?

Pinch zoom works fine on a webView that loads a regular url, if I enable the settings as below, myWebView.getSettings().setBuiltInZoomControls(true); //this works fine. The issue is, I have a ...
1
vote
4answers
72 views

Only take URL Part from String

I want to get the URL from a string so I can show the url in WebView. example strings: exp 1- Hello dilip refer this url www.google.com. exp 2- hi ramesh this is good for android http://android.com ...
0
votes
1answer
10 views

embedded http server on android to server assets folder

I am using an embedded http server from the following example on https://github.com/nikkiii/embedhttp The http server code is initiated as File filesDir = getFilesDir(); HttpServer server = new ...
1
vote
2answers
22 views

Splash screen for Android tab bar application

I have created the android application with tabhost. In this application, I am having the 4 tabs and each one contains their separate webview. For this application, I want to add SplashScreen for the ...
0
votes
0answers
17 views

loading the sdk from the url in android webview

Is it possible to load an already existing app sdk to my android webview project. I have a requirement where is should use already existing sdks to create android webview project and automate it.
1
vote
0answers
40 views

how to display pdf from localhost

In my application i need to display pdf files. I tried to display in webview using google docs. My problem is pdf files are stored in localhost. when give this localhost url its not working. But ...
0
votes
1answer
21 views

Go to another activity when Button is pressed from Flash Video Android

I have a WebView that contains a html file that contains a Flash plugin (a video). I want that When user press a button from Flash video then it goes to the another activity of Android. Is it ...
0
votes
1answer
31 views

Android Webview - HTTP Error 504 Gateway timeout

I have android app that used webview to display Google App Engine web app. How to overwrite the default HTTP Error 504 Gateway timeout encountered in my app? HTTP Error 504 Gateway timeout The ...
0
votes
0answers
25 views

How to edit specific classes/IDs in android webview?

I'm working on an app that is suppose to inject JavaScript into WebView but I can't get it to work. I'm trying to get it to hide certain parts of http://www.karmaco.net/mobile/login like remove "Web ...
-1
votes
1answer
24 views

android finish activity contain a webview when press back button

I have an android application in which I have a button.User presses that button then it start an activity that contain a webview. The problem is in order to finish webview activity when user press ...
0
votes
0answers
7 views

How return to webview's cached page?

I am using a webview to load a remote mobile-optimized webpage (like m.mysite.com). The site uses jquery to load next 10 articles. I mean, by default only 10 articles are visible and on the bottom ...
2
votes
0answers
52 views

Knockout - Unable to parse bindings only within Android WebView

I have the following setup on my site. It is working fantastically on any standard browser and any normal mobile browser: Model: function SearchTerm(data) { this.Term = ...
0
votes
0answers
23 views

How to show site in android app

Good evening! I want to show the fields of the form from website in my android app. I usually parse the html and show the data in my activities, but in this case it's not so simple. For example it ...
4
votes
0answers
19 views

webViewSettings setLayoutAlgorithm LayoutAlgorithm NORMAL

webView.getsettings().setLayoutAlgorithm(LayoutAlgorithm.NORMAL) causes problem when I rebind the html content using JavaScript or Jquery, ie, Some table contents goes missing. Initially, My html ...
1
vote
0answers
24 views

Externalnterface calls not working in mobile browsers

I have an swf with a simple ExternalInterface call. The swf has been created using Flex. ExternalInterface.call("alert","HelloWorld"); This runs fine on my machine (without localhost too). But ...
0
votes
1answer
18 views

unable to load html with swf in webview in android

I am trying to use webview in android to load a local html which has an swf embedded. But when executing the app I am getting the following message "To view this page ensure that Adobe Flash version ...
0
votes
0answers
9 views

Webview not returning secure cookies

I'm trying to login to a service in Android using a WebView. At some point in the process, I want to take over and do the request myself using HTTPClient (or any other HTTP library) so that I can ...
-2
votes
2answers
57 views

Url not loading in WebView?

I am trying to load following url using WebView in my Android application, but its showing that webpage not available while other url loading easily. ...
1
vote
0answers
37 views

How to Open PDF/Docx in WebView

I'm trying to allow the user to click on a pdf/doc link and be able to see it directly inside the webview. This is my code: webView.setDownloadListener(new DownloadListener(){ @Override ...
0
votes
0answers
22 views

How do I prevent page from shifting up when soft keyboard appears over text field on Android device?

I am developing a web app, currently nothing more than Javascript, HTML and CSS. I have a textbox that is near the bottom of the page and when clicked in to bring up the soft keyboard on Android, it ...
0
votes
1answer
23 views

Soft Keyboard not displaying on touch in WebView DialogFragment

Edit: I have looked at the error page for this; no answers work. It seems it is an Android system bug that has not yet been solved. First off I've referred to this similar question. But the solution ...
0
votes
0answers
30 views

YouTube Video in Android Webview with 4.0+ OS does not open in FullScreen Mode

I am making an application which loads YouTube Videos in android webview through javascript. The Videos works fine in android os with 2.2 and 2.3 os i.e works in fullscreen and normal screen. But with ...
0
votes
0answers
33 views

Passing WebView from one activity to another

I am doing hybrid application. It has two activities login and home. On login activity a web view with many java scripts is loaded. Now I want to use same webview in home activity because it takes ...
0
votes
0answers
87 views

Pass Data from Android Java to Webview - jQueryMobile

I followed the trick for passing data to HTML webview from SO post How to pass parameter into HTML file from android. I have this in my Java: try { String template = ...
0
votes
1answer
39 views

@JavaScriptInterface to work with both ICS and JB projects

I am running into an issue with @JavaScriptInterface annotation requirement to support api 15 (ICS) and 17 (JB). I have an Android library project which is shared by two application projects. The ...
0
votes
0answers
32 views

Google-Charts won't show in WebView (Android 4.0.4)

I've encountered a problem with Google-Charts in the WebView on Android 4.0.4 I've got a little page with a Google-Chart on it, so if I display this html-page in the browser the chart shows up just ...
0
votes
1answer
62 views

links from the browser to open my Android app [duplicate]

I'd like to be able to start installed application, when the user clicks on a URL of a given pattern instead of allowing the browser to open it. This could be when the user is on a web page in the ...
0
votes
2answers
32 views

How to send data from activity to a webview in that activity itself?

From this Activity I am sending data to another activity public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
39 views

The specified child already has a parent

I don't know what is happening. My code is crashing and I dont find the reason. I've a LinearLayout which is a container of several WebViews. LinearLayout variableContent = (LinearLayout) ...
0
votes
1answer
26 views

How to know what view is in the same context than other

I have a class where I have a List with three WebView from different Activities public class Class { private List<WebView> webViews; . . . public void ...
-5
votes
0answers
29 views

Show custom marker on geoserver map in android application [closed]

I am able to show Geoserver map using webview (In android) and want to show marker on geoserver map in my android application. Please suggest how to achieve this. Hope to hear from you soon. ...
0
votes
0answers
24 views

Getting Socket.io to work in Android Webview

I am trying to use socket.io inside an Android Webview, inside a native Android app. The Android activity file has been updated with; webView.getSettings().setJavaScriptEnabled(true); ...
0
votes
0answers
24 views

Viewport metatag in WebView not scaling the contents properly in Android

I have a WebView inside a ScrollView. This is my first requirement as there will be other elements also inside the ScrollView. I want the WebView to fit the content in the device-width available. For ...
0
votes
2answers
27 views

Debugging web page in Android app using weinre - cannot find debug target

I am trying to debug a web page inside my Android app's WebView. I've setup and started weinre following these and these instructions, modified my web page adding <script ...
3
votes
0answers
47 views
+50

Can't get backspace to work in codemirror, under Phonegap on Android 4.x?

I need a web-based text/code editor that behaves well, for my App. I'm trying to use codemirror under Phonegap and currently I'm having problems getting backspace to work for previously entered text. ...
0
votes
0answers
52 views

Android webview embedded youtube video autoloop

In my project I have a WebView which loads dynamically generated webpage with embedded youtube video like this: <iframe type="text/html" width="640" height="385" frameborder="0" ...
1
vote
3answers
54 views

How to use WebView in a tab?

I have three tabs that I want to use to utilize my three webviews to display specific domains. Everything build find but when I try to launch the app, logcat tells me that I "must specify a way to ...
0
votes
1answer
55 views

android.webkit.WebView cannot be cast to android.widget.Button

I was working on a GUI inside of my app. I originally had a crappy look to it that just contained all of the basic stuff to test my java functions in. After I had all the functions up and running I ...
1
vote
0answers
19 views

Get resource from WebView that has already been downloaded

I have a webview that loads an external web page. I want to implement a custom caching mechanism so there will be no need to download resources like css, js and images again. I have already tried ...
0
votes
1answer
39 views

Page not found Error in WebView android

I am trying to open URL in webview of my application, but I am getting "Page not found" error. The same URL is not opening in my device(Android Tablet) browser also. If I try to open this URL in my ...
0
votes
0answers
35 views

Call Javascript function from Android WebView

i'm programming an android programme which use a WebView to call a javascript function,but it doesn't work,as you can see i've called all what i need to implement this type of View WebView ...

1 2 3 4 5 41