0
votes
1answer
16 views

Android: Resample bitmap as zooming in?

I have some large images that I would like to display to the user. I want them to have the ability to zoom in. I am currently using TouchImageView, and it is working, however, the ...
4
votes
1answer
62 views

Paint View Zoom with Image not properly zoom : Android

I used canvas in order to zoom paint view with image including using setImageMatrix(). As shown below class use for zoom and draw line.But problem arised, that is entire screen became to zoom in/out ...
0
votes
0answers
45 views

How could I handle OnTouchEvent in ViewPager

In my viewPager, the imageview can zoom in or out. I use the TouchImageView(extends ImageView) to replace the view of ViewPager. I really zoom in or out my imageview, but the ViewPager couldn't ...
1
vote
3answers
188 views

Android zoom and rotate image view

Can anyone tell me example of image view which accommodates both zoom and rotate functionality on pinch. I am not able to find it out.
0
votes
0answers
263 views

Android how to reset ImageView layout to original after zooming and drag

I need to implement zooming, panning and then reset the ImageView to original scale/location. I use view.setImageMatrix(matrix) to perform zooming and moving in FrameLayout. Works perfectly so far. ...
0
votes
1answer
179 views

positioning an matrix image at the center of imageview

I've created a gallery of images and everything works fine. To zoom in and move an image is required ImgView.setScaleType (ImageView.ScaleType.MATRIX) and when I do it, the image I got is small, ...
1
vote
2answers
104 views

Zooming with limits gets stuck in Android

I've used the following code to get the image zooming functionality working on an ImageView: @Override public boolean onTouch(View v, MotionEvent event) { ImageView view = (ImageView) v; ...
0
votes
0answers
75 views

Concept of scrollable and zoomable gallery PageAdapter and ImageView

I want to create some kind of "gallery". I would like to reproduce QuickPic (gallery app) behaviour. User should be able to zoom in/out image, scroll zoomed image in every direction AND also scroll ...
0
votes
1answer
111 views

How to control the image not to move out from the imageView?

I use onTouch to move a image in the imageView, But unfortunately it will move out the screen .So Is there a better way to control that if the image bounds touch the border,then we can stop it move ...
0
votes
0answers
204 views

Android - ZoomableImageView with ViewPager

I am having trouble to implement a zoom-and-pan imageview an viewpager. The problem is to allow view pager to page only then completely zoomed out. I read that I have to play around with ...
1
vote
0answers
224 views

Android : how to add multiple images on a layout with zoom,pan,scale functionality

I am making an application which will work like this : I will have a viewpager each pager element will be an image as background I need to have the ability to add custom objects (other small ...
1
vote
1answer
317 views

Move & Zoom multiple imageViews on a single Activtiy

I am able to achieve Drag and Zoom on single imageView, from here Here is the code as well; public class Touch extends Activity { private static final String TAG = "Touch"; Matrix matrix = new ...
0
votes
1answer
167 views

placing the matrix image at the center of the imageview

> I am scaling the image for zooming, after that i want to place the scaled image at the center of the imageview. how can i do this?? imageview.setScaleType(ScaleType.MATRIX); ...
0
votes
2answers
150 views

ImageView that can be zoomed, dragged, rotated using finger gesture

I have to make an ImageView draggable, zoomable, and rotatable. Can anyone suggest a good tutorial for this, or sample code? I've found many, but most of them work with the matrix to change the image ...
0
votes
0answers
206 views

Android Pinch Zoom Imageview small issue

I have an ImageView which I want to be able to drag/zoom into... I've got the drag working perfectly, however the zoom is giving me some issues, its working but its 'off' slightly, it scales the ...
0
votes
0answers
71 views

Displaying a previously cached image file with pinch-zoom on Android

I'm currently developping an app which displays a GridView gallery of images loaded from the web. Each time we click on a picture, this one is downloaded to a cache folder on local storage. After ...
0
votes
0answers
565 views

Android ImageView zoom, rotate, position change prob

I am using a the following code for a image, which will rotate, zoom in-out with pinch. User can make its position by dragging it. activity_img_match.xml <FrameLayout ...
0
votes
0answers
86 views

Zooming an image on android not working properly

To zoom an image i am doing the following.But using this the size (width and height) of the ImageView element remains same so only a part of the zoomed image is visible and the rest of the part is ...
0
votes
0answers
78 views

iOS Apply Zoom level from one image to another

I have an app which displays an image, which is one side of a structure. By swiping left or right, the view will change the image to the side view of the structure. I have been asked to implement ...
0
votes
0answers
134 views

get the coordinates(x and y) of currently visible part in the screen of that bit map

I need to know; When a bitmap image is zoomed how to get the coordinates(x and y) of currently visible part in the screen of that bit map Thanks
0
votes
0answers
70 views

Zoom an ImageView by multi-touching, how to test it?

I have a custom TouchImageView class which extends from ImageView, by adding supports of zooming it with multi-touching. Now I'm testing it by hand, but I found there are a lot of bugs there, it's ...
1
vote
0answers
749 views

zoom in, zoom out and drag image android

I have code to add ImageView programmatically and make it image zoom in zoom out and drag image my code is as below This code is for adding image view dynamically... ImageView b = new ...
2
votes
1answer
2k views

Zoom and Panning ImageView Android

I have created a zoom and pan class for an ImageView. Features I am trying to create. - It pans on single finger touch and movement - It zooms and pans on two finger touch and movement For the most ...
0
votes
0answers
105 views

Android, how to scale rectangle made in onDraw method of touchimageview?

i have an touchimageview class in my Android application. My app must put on this zoomable image some rectangle relative to the image content. My application must scale and drag this rectangle when ...
0
votes
1answer
56 views

Can't position the imageview to the center

- (void)centerScrollViewContents { CGSize boundsSize = self.scrollView.bounds.size; CGRect contentsFrame = self.imageView.frame; if (contentsFrame.size.width < boundsSize.width) { ...
0
votes
1answer
84 views

How to load an ImageView and focus a certain part of the picture ( by some x and y coordinates?)

I am working on an application that gives details on locations on a map. I would like to give the user the ability to click the location name (on a details page) and then have the app load a large map ...
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 ...
9
votes
3answers
2k views

Draw Rectangle Over ImageView for highlight that can be zoom in-out in android

I have been refer this example from SO below are they. 1.Draw Line Over ImageView 2.Draw Picture Over ImageView 3.I have use this ImageView Class for my image to become zoom in-out Image Pinch zoom ...
1
vote
1answer
236 views

Refresh a zoomed image while keep it zoomed in android

Can anyone tell me how to change the image inside imageview that i have zoom while keeps the image zoomed? the previous and new image has the same size. for the zoom functions, i'm using the code from ...
0
votes
1answer
284 views

Android: How to perform zoom on two imageviews in android?

I have two images inside my layout. I need to zoom that image which i touched. We know that Frame can display a single view at a time. So how do i perform zoom on each imageview separately ? My xml ...
0
votes
2answers
3k views

Open ImageView with Zoom and Scroll

I would like to open an Image, in ImageView, from a button press. I need the image to be zoomable and scrollable. How would I best go about accomplishing this? Thank you! The Image can be either PNG ...
0
votes
1answer
105 views

Android: keep zoom when updated ImageView

I created a simple application that will download a .jpg image every two seconds from a website and displays it in an ImageView. I added to the ImageView the zoom functionality, but each time the ...
2
votes
3answers
2k views

uiscrollview zoom in and zoom out doesn't work properly

I have a uiscrollview and there is a uiimageview inside it. I want the used to be able to zoom in out of the image since it's a big image. the scrollview only needs to scroll vertically not ...
1
vote
1answer
1k views

Imageview issue with zoom in and out,drag with maximum and minimum levels

I had implemented an image view with the zoom and drag functionalities.I am using matrix for the zoom and drag functionality.But my problem is that I cant set my minimum and maximum zoom level and the ...
0
votes
1answer
343 views

Android - Zoom in/out from multiple ImageViews

Im working on a application that should be able to have diffrent ImageViews applied to a view or layout and zoom in and out from them. Similair to create a chessboard where each square represent a ...
0
votes
1answer
157 views

LoaderImageView zoom option not working

I displayed Image from the web. For xml I used below code: main.xml: <com.imloader.LoaderImageView android:id="@+id/loaderImageView" android:layout_width="wrap_content" ...
1
vote
3answers
966 views

how to scale a image to imageview in onCreate when i need to use scaleType matrix

I'm trying to create a ImageView with zoom functions. I got the zoom function ready, but now I want the image to scale to the ImageView when starting the Activity. Normally I would use the ScaleType ...
1
vote
0answers
138 views

How can I animate an ImageView after I applied transformations on it?

I am trying to implement the zoom and drag features for an image viewer. So far I created the custom ImageView and implemented the actual features for pinch zoom and drag using the transformation ...
1
vote
1answer
2k views

How to zoom coverflow images using pinch zoom in android

i have created a coverflow using the code given by http://android.jmsliu.com/138/android-infinite-loop-gallery.html. And it is working fine . Now my question is How i will implement a pinch zoom for ...
1
vote
0answers
748 views

How to determine scale factor in android

How to determine scale factor after zoom. I am using below code for pinch zoom. After zoom I have to draw circle on bitmap at correct location. I heard this the formula we have to use to draw at ...
1
vote
0answers
283 views

How to use PinchImageView in android

How to use PinchImageView from android-pinch for zoom? I have gone through the wiki but could not get it. Can someone share the sample code? Thanks in advance.
0
votes
1answer
223 views

How to perform zoom without changing original bitmap in android

I am using android 2.1. I need to do draw operations after zoom. How to do zoom with out changing original bitmap? After zoom also I should be able to draw in correct position. Currently I am using ...
0
votes
1answer
489 views

coordinates after zoom in android

I am trying to draw circle after zoom and it's not drawn in correct place. With out zoom it is working fine. Do we need to consider any factors after zoom ? Some thing like scale factor . Radius of ...
9
votes
3answers
863 views

How to draw a circle after zoom in android

I am using Image view and drawing overlay image using layerDrawable. I have used two bitmaps original and myBitmap. After zoom I am not able draw circle in correct location, it's drawn in different ...
1
vote
1answer
985 views

Pinch to Zoom ImageView inside a HorizontalPager (RealViewSwitcher) android

There is "double tap to zoom" / "pinch to zoom" ImageView (ImageViewTouch) from here. And there is "Horizontal Pager" by Yoni Samlan here. Please help me how to embed pinch-zoom imageview ...
1
vote
1answer
2k views

Double-tap to zoom and pinch to zoom on ImageView in android

I was looking for iphone like tap and pinch zooming with android ImageView. Mike Ortiz have done some excellent work on TouchImageView to detect boundaries. His code can be found here. This code is ...
2
votes
3answers
3k views

How do I modify TouchImageView with double tap to zoom in and out?

I am modifying the TouchImageView (https://github.com/MikeOrtiz/TouchImageView/issues) to have zoom in and out for when you double tap. I have started as per this post - How does TouchImageView works? ...
0
votes
0answers
317 views

Android ImageView & addview

I would like to show two images on the screen. (the background is set on .xml,the other is using addView()) But when it comes to zoom in/out or drag , I have no idea how to make the two imageviews ...
0
votes
0answers
880 views

How To Zoom In & Zoom Out and Scroll an ImageView on Android?

I have to build an application where i have to zoom in and zoom out an ImageView if user double taps on it. Besides , when the ImageView is in Zoom in state , The ImageView should be scrollable ...
1
vote
0answers
550 views

Zooming a ImageView in a ViewGroup

I have different ImageView in a ViewGroup. Every ImageView has onTouch event like this: public boolean onTouch(View v,MotionEvent event){ ImageView view = (ImageView)v; // Dump ...

1 2