0
votes
0answers
12 views

WebView setBuiltInZoomControls issue

i have some strange problem with BuiltInZoomControls on WebView. I have a couple of different texts that are displayed in different activities. im showing this text using webView and i want them to be ...
0
votes
2answers
114 views

Android - How to overlay images in a WebView?

I'm trying to overlay several images[to form a building plan with possible zoom]. The point is to choose which images to averlay each time depending on selected filters[staff, equipements ...]. After ...
0
votes
0answers
89 views

How turn on zoom in webview when I have a custom onScroll and a custom onFling

I have a default webview with a custom abstract OnTouchListener that call a custom GestureDetector that implements SimpleOnGestureListener. In this class I overrode onFling to handle some ...
0
votes
0answers
176 views

Zooming WebView with svg inside. SVG is pixelized if zoomed

public class TWVSVGMainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); WebView webView = new WebView(this); ...
0
votes
2answers
242 views

Android WebView disable PinchZoom but keep Controlls

I've an android-app (Android SDK 10) with a WebView. On that WebView I have to use elements with a fixed position. Now I know, that there are Problems with fixed Elements, but with this Code in the ...
0
votes
1answer
492 views

Webview auto zoom IN to fit screen

I've made an Android App that's simply a wrapper around a mobile website. Now some users complain that the "little" site is to small for a bigger screen/resolution. I'd try to "autozoom" the site a ...
1
vote
3answers
340 views

Android Webview initial zoom out

I'm using a webview in my android app, at the moment when the app is started the website is zoomed in quite a lot, i want it to be zoomed out to fit the width of the screen. I currently have this in ...
2
votes
0answers
154 views

Webview image fit on screen

This looks like a duplicate, but I got a weird problem. I use this code: public void showPicture(){ System.out.println("comicTeller = "+comicTeller); WebView mWebView = (WebView) ...
0
votes
0answers
51 views

preserve state of childs in viewflipper

i have 10 image urls, im using flipper concept so that i can allow users to flip across the images. im using webview to load urls. im able to flip across images and everything is fine. When i ...
0
votes
1answer
242 views

android webview zoom in/out bug

I had set zoom control on webview webview.getSettings().setBuiltInZoomControls(true); webview.getSettings().setSupportZoom(true); But it work not correctly. If i touch screen for zoom out (multi ...
0
votes
0answers
195 views

Android WebView double tap

Does anyone dealt with this problem: Step 1. You load bunch of HTML (say from resource) into WebView Step 2. You enable zooming and double tap via WebView's settings Step 3. You zoom in text ...
1
vote
2answers
276 views

Android disable WebView touch but keep zooming/scrolling

I am looking for a method to disable touch on a WebView so user's are not able to click on html links but keep the zooming and scrolling functions of the WebView.
0
votes
0answers
245 views

Android Webview landscape Orientation zoomed

Hello all I'm facing a webview orientation problem I'm building an application that have 4 buttons that'll link to different url and I'm showing them in one webview in potrait orientation I have no ...
4
votes
1answer
454 views

Disable Zoom Control in WebView using API 7 Android

I'd like to disable zoom control in WebView. I'm using this code to hide the control : web.getSettings().setDisplayZoomControls(false); but this code can use in Android since API 11, and how to ...
4
votes
3answers
2k views

WebView getting rid of double tap zoom.

I read many tickets on the topic of Zooming in WebViews and didnt came to an answer for my case. Here´s my setup: I´m using a custom webview with generally these settings: ...
1
vote
1answer
2k views

Android WebView: prevent double tap zoom

I'd like to be able to override the doubleTap motion event to do nothing instead of zooming and unzooming. I read on another post that someone was able to get this to work by creating a custom WebView ...
0
votes
1answer
78 views

Get WebView controls for a View?

After working with WebView for a while, and then moving back to standard Views, zooming and scrolling seems quite complicated. Are there any ways of using the same zoom and scrollcontrols for any View ...
3
votes
2answers
667 views

How can I change the Zoom level of a WinRT WebView?

How can I change the zoom level of a WinRT Webview? If I give it focus, I can zoom in/out using the keyboard CTRL+ + and CTRL+ - But can this be accomplished from code? Note: Putting the WebView ...
0
votes
0answers
205 views

Zoomable imageview using webview on touch not work

I have to create shown in screen, I have a frame in that I have to show 2 component 1.Map 2.Large Image static Map. only one will be visible at a time. and on top of the frame there is a layout ...
0
votes
1answer
632 views

Pull down to refresh on UIWebView (zoom issue)

I'm using EGO Pull and Refresh code as described here to implement "Pull down to refresh" feature to UIWebView. All works fine, until I zoom webView. If I add child to webView.scrollView it scrolls ...
2
votes
1answer
415 views

Disabling the zoom functionality of webview,when clicked on the textfield?

I am having a webview with many text field and some images.I disabled all the zoom and zoom controls in the webview.But my problem is when i click on the text field its geting zoomed.I want to disable ...
0
votes
1answer
287 views

Initiate zoom within an Android WebView from a longpress

I am looking for a way to replicate the native WebView zoom on double-tap but triggered via a long press instead. As, with the double-tab zoom I'd like the zoom to scale centered around the point of ...
1
vote
0answers
192 views

control webview zoom out at 100% in android

In my app I am getting url of an image and I am loading that in webview. Here is if i zoomout at initial stage(like 100%) it should not zoom out. But once the zoom in has occured then it should be ...
1
vote
0answers
672 views

How to change WebView scale programatically?

I'm developing for android using PhoneGap. Following you can see my code, what i cannot do is to reset the WebView scale to 1 after user changed the scale. I'm appreciate it if you can help me. ...
0
votes
1answer
544 views

Using Zoom Controls with an image

I have an image of an exhibition hall layout and would like to use a zoom control to zoom in on the plan detail like you can with an iPhone. I've tried using a ZoomView with on touch listener which ...
1
vote
3answers
2k views

WebView and built in zoom control

WebView wv = new WebView(this); wv.getSettings().setBuiltInZoomControls(true); setContentView(wv); wv.loadData("<html><body><p>Hello World</p></body></html>", ...
0
votes
2answers
2k views

Android WebView zoom out after page is loaded

I have an initialized WebView with the following code: _webView.setWebViewClient(new WebViewClient() { @Override public void onPageFinished(WebView view, String url) { while ...
4
votes
1answer
5k views

Disable Double Tap Zoom/Unzoom on a webview

On Android, I'm am using a webview to display a chart designed by the API flot. I'm using this code: super.onCreate(savedInstanceState); this.requestWindowFeature(Window.FEATURE_NO_TITLE); ...
0
votes
1answer
283 views

Center Zoom Buttons in WebView?

By default the zoom buttons in WebView are aligned to the right, is it possible to make them align center? Thanks in advance for your answers! :)
1
vote
2answers
411 views

WebView in Froyo(2.2). zoomControl dismiss

My project ver is 2.2. I am using Zoom function in Webview. wv.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR); wv.getSettings().setBuiltInZoomControls(true); When using the zoom feature ...
2
votes
1answer
2k views

Non-visible zoom controls in WebView

I want pinch-to-zoom in WebView but I dont want it to have the integrated control (the little zoom in and zoom out buttons) all I want is the pinch to zoom. I tried this and it didn't work: ...
2
votes
1answer
494 views

how to preserve zoom and position level in webview android between different pages?

I created an app that uses a webview with different url-pages with back and forth arrow buttons. My problem is that when the user zooms in, in a particular region of the webview and then presses the ...
3
votes
1answer
2k views

Android webview pinch zoom Problem

Hi guyz im able to pinch zoom the image in webview its working properly. Zoom in is working fine but problem is zoom out. Image goes small and small. How can i limit zoom out to the size of the ...
3
votes
1answer
3k views

Android webview pinch zoom local image

Hey I'm trying to get pinch to zoom working on a Webview of my app but cant, it just displays the image really zoomed in (probably displaying it 100%) here is how i got the webview to work. In the ...
0
votes
1answer
2k views

Android setInitialScale is not working for mobile pages

I am creating an application where I have to resize the content of a webview. Everything works fine until I load inside the webView a mobile page. No matter what value I set to setInitialScale(n) the ...
1
vote
1answer
1k views

disabled built in zoom controls disable pinch zoom, too

I have a WebView which should support zoom. The UI design requires custom zoom controls and therefore I disabled the built in zoom controls. The problem now, the pinch zoom is disabled, too. Setting ...
0
votes
2answers
722 views

Using Pinch in zoom in webview with a local html gets distorted

I have a webview in which a local html file is opened. This local html file is using Google Javascript API to open Google Maps. I had set webview.getsettings().setbuiltinzoomcontrols to true. Pinch ...
0
votes
2answers
571 views

Android webview settings, disable some things

I am using myWebview.getSettings().setBuiltInZoomControls(true); to set zoom controls on my webview. I realize this enables a variety of zoom controls that are different on every phone/device. For ...
0
votes
1answer
614 views

Android webview disable zoom icons

I have a webview inside a tabview and have enabled the zoomfunctions. However, whenever I got back to the non-webview tab, the +/- icons are still displaying. Is there anyway to get rid of them or not ...
2
votes
1answer
420 views

How does zoom work in android.webkit.WebView?

I tried studied the WebView source for quite a long time, and I can't understand how the zoom feature is implemented. The Height and Width of the View is always the same, canvas width and height ...
3
votes
1answer
3k views

webview zoom controls

I have a webview that you can navigate to an embeded link in it. That link is to an image, and I enable zooming when navigating to that image, and disable it when the user goes back. This works ...
2
votes
1answer
1k views

How to zoom in/out the content of a WebView programmatically?

I am trying to programmatically zoom in/out the content of a WebView object in my app. But I can't find a nice way to do this. Can anyone give me some help? It's better if there can be some code ...
2
votes
1answer
1k views

Android: Limiting Zoom Out in Webview

I have to display an area map in my application. This map is provided as a large jpg file (>1000px * 1000 px). I display it in a webview and I also use the build in zoom controls and the zoompicker, ...
4
votes
1answer
1k views

Existent app blowing up with android 3.0 XOOM. ZoomButtonsController Leak?

Unfortunately I don't have a XOOM device and the 3.0 emulator is IMPOSSIBLE to run even on the latest 2011 macbook pro. I have asked one of the users to send me the error logs and the weirdest things ...
4
votes
7answers
3k views

How to safely turn WebView zooming on and off as needed

As mentioned in this unanswered question: WebView throws Receiver not registered: android.widget.ZoomButtonsController By turning the WebView zoom controls on and off as needed throws this: ...
20
votes
7answers
30k views

enable/disable zoom in Android WebView

There are some methods in WebSettings related to zoom: WebSettings.setSupportZoom WebSettings.setBuiltInZoomControls I noticed they work differently on some deveices. For example, on my Galaxy S ...
10
votes
2answers
9k views

Disable pinch zoom in WebView?

I'm building an app that displays some content in a WebView. I'm styling this content to fit the screen and no zooming is needed. Is there a way do turn off the zooming features of a WebView?
11
votes
8answers
8k views

Disable zoom when clicking on form fields within a WebView?

I've looked through dozens of pages if similar questions, none of them have any answers, so hopefully this one will be different. I have a webview, and I do not want the zoom of the view to change ...
0
votes
1answer
417 views

How do you set the initial viewing position of a webview?

In android, I am loading a large United States map from the web inside a webview. The map is very large and what I would like to do is have the page pre-centered and possibly even pre-zoomed in on a ...
9
votes
2answers
1k views

How disable the tip toast message that sometimes appears with the zoom controls in a WebView?

I haven't tested this on any other devices but on a 2.1 device, in a WebView with the zoom controls turned on, a toast message sometimes comes up that says something like "Tip: double tap to zoom in ...

1 2