Questions tagged [pinchzoom]

Gesture which allows the user to zoom in by moving two fingers closer together while touching the display.

726 questions
0
votes
2 answers

Android pinch zoom not working when Image is set as background

I'm using this example to have pinch zoom property to my imageview. This example works perfectly when I set image as src to this imageview from xml. e.g.
Nayanesh Gupte
  • 2,735
  • 25
  • 37
0
votes
1 answer

Pinch zoom of layout in android eclipse

I have a layout, which include two ImageViews. I want to create an easy way to include pinch zoom on ImageViews. I have watched some codes, but they work only on single ImageView. Is it possible to make this work on a layout with ImageViews?
user960439
  • 125
  • 1
  • 12
0
votes
2 answers

Pinch Zoom And Scroll multitouch source code

Today , i have covered a serious problem . I have just created a apps including this library https://github.com/sephiroth74/ImageViewZoom source code used completely. Now i wanna upload it into Google Pay but i am confuse that will this license any…
Rahul Rawat
  • 999
  • 2
  • 17
  • 40
0
votes
0 answers

Scale ImageView aswell as Image

Currently, I have an XML file with lots of imageviews in it that can be scrolled through using navigation buttons. These imageviews can be rotated, scrolled and moved but when they are they will leave the bounds of the imageview and so you cant see…
Marche101
  • 815
  • 2
  • 12
  • 25
0
votes
1 answer

PinchZoom and paning using surfaceView

I am developing a RDP application using android 3.0. I am using surface view to display the images. Is there any way to implement pinch zoom functionality for surface view(I am trying to zoom the image).
mini
  • 855
  • 4
  • 15
  • 22
0
votes
2 answers

Pinching zoom a custom UIView: lines and text are pixelate, needs to be re-rasterized

I have a custom UIView. In this view I am overriding drawRect to draw some paths and some text. When a tap is detected, the view is zooming in - (void)tapDetected:(UITapGestureRecognizer *)sender { float zoom = 3.; sender.view.transform…
boscarol
  • 1,901
  • 2
  • 15
  • 29
0
votes
2 answers

Weird behavior when pinch zooming an ImageView

I have an ImageView to which I added an OnTouchListener so that I can zoom in and out the latter using pinch gesture with two fingers. I'm using the code below, but I'm having a problem with resizing the actual Bitmap. The latter gets blurred, stays…
Jean-Paul Manuel
  • 546
  • 2
  • 12
  • 29
0
votes
1 answer

How can I get the PinchZoom ended event in Windows 8?

I'm using XAML with C#. I have an Image in a ScrollViewer that is Zoomable. If the user pinchzooms the image, I want to get a larger resolution image once the optical zooming is done and replace it with the lower resolution zoomed image. I don't…
dcdroid
  • 672
  • 2
  • 9
  • 29
0
votes
1 answer

PInchZoom in android

visit Pinch Zoom in and Zoom Out this is my post but i didn't get answer still waiting. Now i'm using this URL https://github.com/MikeOrtiz/TouchImageView project for pinch zoom . and i have run this project and got a picture . but i'm not pichzoom…
Rahul Rawat
  • 999
  • 2
  • 17
  • 40
0
votes
2 answers

built-in zoom control not work if i have ontouch event in webview

i am using webiview and i override onTouchEvent than built-in zoom control is not working. wv.setOnTouchListener(new OnTouchListener() { public boolean onTouch(View arg0, MotionEvent arg1) { …
Sanket Kachhela
  • 10,861
  • 8
  • 50
  • 75
0
votes
1 answer

Android pinch zoom, ZoomOut and ZoomIn, in limit

I have already searched alot around here but haven't found a solution yet. So the thing is , I have a image 3000*3000 px, I set it to scale type matrix. Now I have only the left corner showing of the image. Now I don't want people to zoom in at this…
pieter
  • 385
  • 1
  • 4
  • 19
0
votes
0 answers

panning and zooming

I am creating an application where i need to zoomin/zoomout a document on finger pinch. I used Viewport.js for the same but there is a small limitation with that. When the document is redrawn its redrawn only from top-left. I need the effect to be…
Khush
  • 867
  • 1
  • 19
  • 46
0
votes
1 answer

Pinch to zoom independent axes in 4.0 ice cream sandwich

I developed a mobile app inside Adobe Flex (4.6) and it includes using pinch-to-zoom functionality to zoom in on pictures to make it easier to read words in the pictures. In previous android versions (2.1 to 2.3.3 and 2.3.4 if you're running…
0
votes
1 answer

Horizontal scroll view is not scaling

I have to display some tables which user can pinchzoom. The table is wrapped up in a horizontal scroll view. I am scaling the layout which consists this horizontal scroll view. When the zoom is 1,we are able to scroll horizontally completely. But…
-1
votes
0 answers

How to make like Apple Photos collectionview pinch zoom?

Apple photos can change columns with pin zoom smoothly,how it work? i have coustom UICollectionViewFlowLayout , use UIPinchGestureRecognizer, but not work well this is my custom layout - (void)prepareLayout { [super prepareLayout]; …