Gesture which allows the user to zoom in by moving two fingers closer together while touching the display.
Questions tagged [pinchzoom]
726 questions
-1
votes
1 answer
How to use ngx-img-zoom with html range in Angular
Angular ngx-img-zoom with pinch-zoom and scroll zoom at same time

Nuhman Pk
- 112
- 7
-1
votes
2 answers
Flutter - How to create List of zoomable images?
I'm trying to create a list of zoomable images inside the list view but the problem is when the user tries to zoom in the layout becomes confusing and laggy because the device can't detect if the user wants to scroll the list or if he just wants to…

Faris Shomali
- 101
- 8
-1
votes
1 answer
Another way for zooming in Unity
When I searching for zooming in Unity online, all the post I come across so far tell me to change the fieldOfView property of the camera.
But when I tested it in the Unity editor, the scene object goes way back to the horizon when the FOV gets too…

Noob002
- 38
- 5
-1
votes
1 answer
How to perform "pinch zoom" on a game using ADB via USB for Android
I am developing some automation on a game where I need to use the pinch zoom functionality (for more on multi-touch gestures see this Wikipedia article).
Solution possibilities I tried: Recording events and replaying them, but this is performing…

bhappy
- 62
- 3
- 17
-1
votes
1 answer
restrict camera movement, Camera moves out of bounds
I'm creating a simple camera pan and scroll for my mobile game and need some help.
Right now with the code I have a player can scroll of the map I created.
I got the code from this youtube video (for context)…

Tubestorm
- 1
- 4
-1
votes
2 answers
Camera pitching issue unity
I have this code and it's giving me this error on some fields. Can anyone give me a solution please?
Assets\Scripts\CameraController.cs(46,17): error CS0120: An object reference is required for the non-static field, method, or property…
-1
votes
1 answer
-1
votes
1 answer
I need to make my app support pinch zoom, but not double tap
This is the code I made for my onTouchListener:
if(event.getAction() == MotionEvent.ACTION_UP) {
Log.i("", "double touch : " + timeLastTouch + "... time passed: " + (System.currentTimeMillis() - timeLastTouch));
if…

rosu alin
- 5,674
- 11
- 69
- 150
-1
votes
2 answers
how to call interface from TouchableWrapper class in android
I need to call interface while double tap on google mapFragment.
I am able to detect double tap on map now.
This is my TouchableWrapper class
public class TouchableWrapper extends FrameLayout {
GestureDetectorCompat mGestureDetector;
public…

sunil
- 796
- 1
- 8
- 28
-1
votes
1 answer
onScaleEnd received prematurely
I am working on a feature in my app that does zoom-in and zoom-out. I have noticed that when I do zoom-in, then my app receives onScaleEnd() even though both my fingers are still on the screen. Because of this, my app behaves in an unexpected way. I…

Ajit
- 11
-1
votes
1 answer
Scale layout limits on pinch zoom Android?
I used a custom layout with a ScaleGestureDectector class to zoom in, zoom out my custom view. My problem is when I zoom in at 3.0x and above, my custom layout cannot be zoomed out, and difficult to zoom in (too lag)
Here is my code :
private class…

nguoitotkhomaisao
- 1,247
- 1
- 13
- 24
-1
votes
1 answer
How to pinchzoom imageview in android
I would like to pinchzoom an imageview in android but can't do that.
I can't find any tutorial. How can i solve this problem?
Like this. http://www.youtube.com/watch?v=ftKgMGnzUAc

Onur
- 145
- 2
- 2
- 11
-1
votes
1 answer
How to apply pin to zoom to Relative Layout
Can we apply pinch to zoom for Relative Layout? If we can please share your thoughts. Thanks in advance.

Ravikumar11
- 429
- 2
- 9
- 15
-2
votes
1 answer
How to replicate the pinch zoom interaction of google maps and leaflet.js (trackpad and mobile)
I am curious how to recreate the way pinch zoom works on map tools like google maps and leaflet.js
On any other site, when you pinch zoom the entire browser windows gets magnified on whatever you are pinch zooming on.
On Google Maps or Leaflet.js,…

Organnoise
- 331
- 1
- 7
-2
votes
1 answer
Prevent full page zoom
I have a page with a svg map at the half top area and an index at the half bottom area. This page is going to be displayed on touch screen. I want to isolate the index (bottom area) from being zoomed when using touch-action:pinch-zoom on the top…

Delcasda
- 371
- 4
- 13