Zooming refers to issues relating to scaling viewed areas in a graphical user interface.
3
votes
0answers
606 views
Android code to zoom and pan a Relative layout which contains text boxes, buttons, spinners, etc
I have zoomed into the layout easily but I also want to scroll the zoomed layout. I have been able to zoom but I want to also have scrolling after I zoom so that I can edit the values of the Widgets
...
2
votes
0answers
146 views
JavaFX bar chart zooming by rescaling
I'm developing a program that needs to zoom into a horizontal bar chart (ctrl+mousewheel), but not by magnifying it, but by rescaling it (just the width). The rescaling is done by changing the ...
2
votes
0answers
81 views
Making an Interactive and Zoomable Radial Tree using Mono
Background Information / Layout
I'm trying to display a radial tree as part of a UI. The data for the tree is static, and there are typically a few thousand nodes. Just drawing it, per se, is not a ...
2
votes
0answers
65 views
Android zooming on dynamically changing layers
I have the base image of a map and I want to be able to add markers to this map. The markers are controlled by a set of buttons at the bottom of the screen and need to be able to display and hide ...
2
votes
0answers
45 views
how to allow zooming without showing black background near borders in ios
if touchlocation for zoom is near the corners, black background shown and not zoomed to correct location i want.
i want to zoom to touch location but not showing black background. staying with borders
...
2
votes
0answers
87 views
Zooming Android Keyboard
So I have a school project and I am making an Android application that acts as a keyboard for a computer. I know how to connect the application to the computer, but I am having difficultly developing ...
2
votes
0answers
177 views
Creating a image viewing canvas with pan and zoom and user interaction support
I'm creating a program similar to Adobe Illustrator but much simpler and generates code rather than an image.
My issue I'm having is AffineTransform not working correctly for me. Most likely because ...
2
votes
0answers
197 views
TurnJS and browser zooming
I've recently stumbled upon the TurnJS plugin to create a page turning effect. I'm working on a project right now with it to recreate a Flash flipbook that was built in the past. One of the ...
2
votes
0answers
254 views
How to magnify an image programmatically in android
I have couple of images showing on android 2.2 with help of PageViewer (Thanks to supporting libs from android). This works like a charm...
But What I am looking for is to magnify each of image (zoom ...
2
votes
0answers
1k views
Set UiWebView's minimumZoomScale and maximumZoomScale with custom value in iPhone/iPad Objective c
In my App for iPhone/iPad(in Objective C), there is a UiWebView which loads any site(by typing the URL). My UiWebView loads site successfully and it can be scrolled and Zoomed successfully.
But my ...
2
votes
0answers
262 views
issue while zooming content of UIScrollView
i am developing an application in which i am placing a set of images on a scrollView.i could place the images and given the contentSize as required to fit all the number of images.each imageView is of ...
2
votes
0answers
668 views
zooming and scrolling texture of image using opengl in android
i want to zoom a image in doubleTap, make it smoothly scrollable, please help me,my draw method is below:
public void draw(GL10 gl) {
// bind the previously generated texture
//zooming in ...
2
votes
0answers
1k views
Blank screen when zooming in/out in MapView in Android 2.2
I have an application that puts some overlays in a MapView of the Google Maps api for android working perfectly in Android 1.6, and when I tested in an Android 2.2 (LG Optimus One) when zooming in/out ...
2
votes
0answers
6k views
Centered zoom on Android
I've managed to create a Zoom (extends View) in order to load a PNG into a Drawable object and have it on the screen with zooming and panning function. See the code of the View (Zoom.java) :
public ...
1
vote
0answers
45 views
Android camera accessing “outside current field of view” on zoom in
Here is an interesting problem I am trying to solve.
In my app I have extended SurfaceView to create a custom cameraview. And now I want to implement ZOOM and PAN functionality in it. Following are ...