0
votes
1answer
87 views

How to display image in its actual size with a ScrollViewer using WPF?

I want to display image in its actual size with a ScrollViewer. I've put the Image Control in a scrollviewer but found that the scrollviewer has no effect. The picture shows is either resized to fit ...
1
vote
0answers
224 views

Background Image Not Tiled Correctly when Device is Rotated

I am having problem keeping a background in repeating tile mode when device is rotated. When I rotate a device, the background goes from repeated tiles to stretched image. The background is a ...
1
vote
0answers
270 views

implement image zooming in a scrollviewer on windows phone

I placed an image control in a scrollviewer just like tnis: <ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" > <Image ...
0
votes
0answers
105 views

Trouble displaying a very large image using ScrollView

I'm attempting to create a layout designed to display a very tall image using a scrollview. The problem I'm having is the image simply does not display at all if the dimensions are taller than my ...
0
votes
2answers
123 views

UIScrollView in iPhone?

I am working in iPhone application, Using UIScrollView to set in Horizontal, add 5 images in UIScrollView,and its working fine. (I want to show 2nd image in opening time) Then i tried, when the ...
0
votes
0answers
77 views

imageView plugin for phonegap

I need to display a map (large .png file) with just simple gestures (scroll zoom in/out). I cant find a plugin that will allow me to display a static image. It seems so simple, but since I am new ...
0
votes
0answers
144 views

scrollView does not show first image & landscape - xcode

i have a scrollView with images and it works but i can't figure out why the first image does not appear and only shows images from 2-17 and not 1.jpg. in the 1.jpg its a blank space but when i scroll ...
0
votes
1answer
415 views

Weird and unpredictable behavior by Views and Images from remote URL?

Here is my APP.js var win = Ti.UI.createWindow({ navBarHidden : true, className : 'window', backgroundColor : "#efefef" }); var header = Ti.UI.createView({ height : 20, width : ...
0
votes
1answer
240 views

scrollview stacks images on top of each other -xcode

I have a scrollview with subview as images.. when I made the pictures center to the scrollview they all appear on top of each other as a stack.. I need them to scroll horizontally.. how do I fix that? ...
0
votes
2answers
855 views

UIImageView zoom, tap, gestures don't work

I am using Apple code for just zoom the UIImageView on taps and gestures. But its not work ? Please see this Apple's link apple code for image zooming by taps and gestures -(void)veiwDidLoad { ...
0
votes
0answers
916 views

Xcode: ScrollView & image array

I have an array with images presented in a scrollView. It works perfectly on the simulator however when i run it on the actual device (1st gen iPad) it crashes. At first i lowered the quality of the ...
0
votes
1answer
2k views

Scrollview paging with images?! xCode 4.2

I've been searching for long time how to add images into a scrollview and enable paging, so when i swipe left or right the next or previus images shows. i havent find anything that works yet, the only ...
0
votes
1answer
365 views

Load a set of images into a scrollview

Okay, so I have a JSON array of image URLs. I want to load them into a horizontal scrolling view. This is the way I've gone about it, but nothing gets displayed where the ScrollView should go: public ...
0
votes
1answer
232 views

How to code the ScrollView with images like this

I tried sample code in App Dev Center, but the code only can show images side by side and fill all scroll view, I want to realize like attached picture, who can give me some thoughts? Thanks~!
0
votes
1answer
388 views

Correct Image size, ScrollViewer, Orientation, Stretch

When the phone in the portrait position than picture with Portrait and Landscape orientation is fits to the screen. When phone in Landscape position than pictures with Portrait orientation is not fits ...
0
votes
1answer
256 views

Scroll View Images Description

I have a ScrollViewer containing a gallery of images and need to add the function of "pop up" with the description of each image, ie when the function will receive the ScrollViewer singletap displays ...
1
vote
1answer
729 views

iphone Custom UIButton does not show picture

i created a custom UIButton inside a scrollview. But the picture does not show, any idea what i am doing wrong ? UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; ...
0
votes
1answer
469 views

iphone: how to add text above and below the image in the scrollvew?

I would like to add a page number above the image such as "1 of 50" and description of the image below the image in the scrollview. I have looked at this LINK but still couldn't figure out how to ...
1
vote
1answer
136 views

iphone: a way to optimize image loading on scrollview.

In my app, I display images with scrollview. I avoid memory issue by adding view as user scroll through. Scrolling seems fine but it stop in split second when new image is loaded on next/pervious ...
0
votes
2answers
1k views

How to enable Horizontal scroll in Android?

Basically, the code below is what I am using to retrieve images from a remote server. My problem is, whenever I have large images like 700x700, it shrinks the entire image until it only fits the ...
1
vote
1answer
155 views

Scrollview like iAd gallery app

i want to implement an iPhone scroll view like the iad scroller inside the app iAd Gallery of Apple. Here is a link with an image example of what i mean : ...
3
votes
1answer
733 views

Why is scrollview and app moving slow (laging)

I have a scrollview and in each row I load a picture plus text (the picture path and text are loaded from database). The problem is that if the picture has a very high resolution, the application ...
0
votes
1answer
617 views

How can I ensure that a remote image of a imageView will be shown in a window with a scrollView?

I've tested a lot of things to solve my problem, but I have no idea now to fix it. On the internet I found out, that the "load event" of the imageView could work, but it doesn't. I have the following ...
1
vote
1answer
280 views

How can I determine if I will draw offscreen when doing custom bitmap blitting in a view inside a scrollview in Android

I have subclassed View and do some bitmap drawing inside of the onDraw method. This view is then placed in a horizontal scrollview. Some of the time the bitmaps will not be visible since they are ...
0
votes
1answer
642 views

Dragging an image from a scrollview

This is driving me bonkers, have been on it ages and still can get the thing to do what I want! My view is set out like this: RootViewController contains (UIView)flipView FlipView contains ...