0
votes
0answers
9 views

eclipse: send imageview in a scrollview

I want to send an imageview in a scrollview with a button and i have used this code: ImageView imageView1,imageView2,imageView3; @Override protected void onCreate(Bundle savedInstanceState) { // ...
0
votes
1answer
29 views

Scale scrollview contents to fill screen

I've a scrollview that displays a few bitmap imageviews to fill the screen. To support larger screens, I just want to scale the images. If I place a single imageview in the scrollview, it scales to ...
0
votes
0answers
38 views

Extending ImageView. Make the scrolls work

i'm extending ImageView to reimplement OnDraw method, but i have some problems with scroll. Now I have this in XML file: <ScrollView android:id="@+id/ScrollView02" ...
0
votes
1answer
159 views

Android: ImageView scale to screen width within a ScrollView

I'm quite new to android programming and I stumbled upon a problem with my layout. At first, I had a Linearlayout with a textview, 2 buttons and a imageview scaled to fit the screen. Now I wanted to ...
0
votes
0answers
46 views

how to change the border color of ith image in ScrollViewer? [closed]

I am newbie to windows phone development.I have 'n' numbers of images with in ScrollViewer. if i click on one particular image, i need change the border color of that particular image. How to do this ...
0
votes
1answer
112 views

ImageView not displaying inside of HorizontalScrollView in android

I have an image that is 8000 pixels long that I would like to scroll through horizontally. When I insert the image as an ImageView into a HorizontalScrollView and run it on a physical device (Samsung ...
-1
votes
1answer
50 views

Create an action when reached a certain position in scrollview in android [closed]

I have a little problem here, I have an imageview and a scrollview and I need to change the display in imageview when a certain point in scrollview has reached. Its a vertical scrollview.
0
votes
1answer
375 views

adding both horizontal and vertical scrollview for imageview

in my application.i have used RelativeLayout. i want to add horizontal and vertical scrollview to imageview. i tried it but not working. imageview size should be 800*800. is there need of ...
0
votes
0answers
46 views

ScrollView's image size on retina displays

I have a question regarding ScrollView on retina display. On my iPad app I have added a ScrollView with an ImageView with 768x768. The image.png for the ImageView is 2304x2304 (= 3 x 768x768) so that ...
0
votes
2answers
77 views

How to show document rendered image pages with scroll and pinch zoom in Android

I have a pdf doc in a server which I get through a service as an array of images. Each image correspond to a PDF page rendered. I would like to show all the images of the documentn in my App. The ...
0
votes
1answer
62 views

how to crate scrollview pagination with each page contain 4 image from plist/nsdictionary

i need to make an app that using a scrollview with pagecontrol to view image gallery, each page contains about 4 image and the image are loaded from plist or nsdictionary for example it will look like ...
0
votes
1answer
135 views

ImageView in ScrollView is resized wrong

I am using a ImageView, to be exactly it is an ImageMap extending an ImageView, in a ScrollView with the following part of code: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
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 ...
2
votes
0answers
237 views

Android scrollview of mixed size image views that fit together like tetris

What I am trying to create is a scrollview of images of all different sizes that fit together perfectly without any obvious rows or columns. each image represents a food and each food has a certain ...
1
vote
3answers
1k views

How to show multiple images inside UIScrollView in iOS

I am making one iPhone app in which i need to show some images inside UIScrollView, on left and right there will be two buttons user can click on button and it will show the next or previous image. ...
1
vote
0answers
89 views

Image will shake when pinching it in ScrollView and ImageView

I followed the Standford CS193P course and wrote a program which can zoom a picture in an ImageView embedded in a ScrollView. When I'm pinching, it works, the picture will "shake" continually. I ...
0
votes
1answer
284 views

android - layout - maximize imageview

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" ...
0
votes
0answers
210 views

Enlarge ImageView inside HorizontalScrollView without changing scrollviews height

I have a HorizontalScrollView with one LinearLayout as child. I am adding ImageViews programmatically to this LinearLayout. I want to enlarge ImageView when touched. I have successfully enlarged it ...
0
votes
2answers
131 views

Contentoffset for Tapped imageview in scrollview

I am trying to save the tapped image to a photo album, using contentOffset to detect which image object is tapped to save, but it always saves the last imageObject instead. Here is how I try to ...
2
votes
2answers
118 views

how can scroll background image?

How can I set my background image to scroll with my ScrollView? For example, I want to appear one image 640x480 and if you slide down it must appear the other 480 dp of my image..
1
vote
0answers
113 views

iphone scrollview and imageview autoresize

I am using xcode 4.3.2. I have an imageView inside a scrollView, with the contentMode for both set as aspect fill. My problem is after I rotate the orientation, the screen focuses on the center of ...
0
votes
0answers
40 views

iOS - Can't “draw” ontop of imageview.image within scrollview

I want to implement a drawing method with touchesBegan and touchesMoved, etc. However, when I try to implement this, it gets overridden by the scrollview controller delegate and scrolling interferes ...
0
votes
0answers
91 views

How to fit image size to screen while using scrollview in android

I am using an image wrapped inside scrollview and horizontal scrollview with wrap_content.The size of image is larger than the screen size and the content overflows the screen enabling the scrolls. ...
0
votes
0answers
304 views

android unable to scroll image with ViewPager --> ScrollView --> Imageview

I am using a view pager inside my main view. Depending on the content of the frames I add one of two xml files. The first one is this: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
3answers
536 views

Scrollview + scaling images = doesn't scroll properly, why not?

I have an image that I scale to the width of the phone/tablet. It is 224x1632. The imageview is within the scrollview, and I need to be able to scroll up and down on that image. The issue is that the ...
0
votes
2answers
209 views

Image resizing in Scrollview

I have an ImageView in a ScrollView and resizing the ScrollView at some point. The problem is, that the ImageView is resizing to the same size as the ScrollView, but I want it to keep the original ...
0
votes
1answer
144 views

UIImageView in UIScrollView Issues

for the past couple weeks I have been stuck on getting A UIIMageView to work correctly with a UIScrollView. My image is 320x9100 and all I am trying to do is get it to scroll vertically. Everything ...
2
votes
2answers
443 views

How to get the tag number from an imageview in scrollview?

I'm getting trouble with getting tag number from imageview. I added UIGestureRecognizer to each imageviews in scrollview, and tried to get the tag number from touched view. After I touched the image, ...
0
votes
0answers
57 views

How to put imageview in scrollview?

I am stuck in very strange problem. I'll try my level best to explain it. I have one image which i received from the web and set it in image view and below that image i have set a listview which ...
0
votes
0answers
134 views

Touch action in ImageZoomView and ScrollView

I need to create an Activity that can show an image with zoom-able and other content such as textview or listview so I create main.xml like this: <ScrollView ...
0
votes
1answer
372 views

Titanium: ImageView for Android that is scrollable horizontal AND vertical

I have the following problem by developing an app for Android with Titanium Mobile: I have an ImageView that fills out the complete screen. In this ImageView is a picture which is bigger than the ...
1
vote
0answers
124 views

crash loading images in scrollview xcode

i'm making a simple Photogallery, putting around 60 images 1024x768 in the scroll view causes me a really slow execution or even a crash of the app, what am i doing wrong ? ...
0
votes
1answer
192 views

ImageView resizes when I addView

All I want to do is grab an image from the web (Succeess!) and display it at whatever resolution it is origionaly, withing a scrollview. however, when i addView to the scrollview, the image gets ...
0
votes
1answer
284 views

Move imageview from scrollview to relativelayout

How to move imageview from ScrollView to RelativeLayout using dragndrop (or else)? Android 2.2/2.3.3+ I Need OnTouch take imageview and smooth move to relativeLayout... Sorry for my English..
1
vote
1answer
175 views

How to scroll an image clipped from rotating from portrait to landscape mode

I built a small demo application by starting with a split-view based template. Then using IB I added a Scroll View to the detail view and then an Image View to the Scroll View. Both the Scroll View ...
0
votes
1answer
416 views

Android scrollview shrinks imageview

This is my layout xml with a relativelayout in a scrollview: <ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent" > <RelativeLayout ...
3
votes
2answers
2k views

ImageView: automatically recycle bitmap if ImageView is not visible (within ScrollView)

So, I've been looking at the ImageView source for a while, but I haven't figured out a hook to do this yet. The problem: having, let's say, 30 400x800 images inside a ScrollView (the number of ...
2
votes
2answers
669 views

Get id of an ImageView in Scrollview in Android

How can I get the id of an element that has been clicked, if this element is found in a scrollView? In my case I have 4 photos (ImageViews) and if I click on one of them, I want to get its id (already ...
0
votes
1answer
190 views

Creating scrollable list of images

I thought this would be really simple but its proving to be very difficult. Im trying to create a simple view with a list of 13 images that I can scroll down. Im using the xml code below but the ...
7
votes
2answers
297 views

Using ImageView for panoramic view

Is it possible to use ImageView to draw a panoramic picture? I.E. When you scroll to the end of the right edge of a panoramic picture, it should start showing the left edge of the picture. I know ...
0
votes
1answer
218 views

How to disable resizing image in a imagaivew after scaling it?

I'm writing a application that there are a upper-imageview and a scollview under the imageview. The imageview is used by a class provided by my friend, it supports pinch zoom, but after i zood in the ...
1
vote
1answer
247 views

ImageView in Scrollview appears upside down

I have created a scrolling/zooming image view by placing a UIImageView within a UIScrollView. The behavior is exactly as I desire and would expect, however the image is appearing upside down within ...
1
vote
1answer
2k views

How to programmatically displaying an image with a text (or button, or other) overlay?

I have an image to display via an ImageView element. Based on user input (say, a long press) I will want to overlay something on that image, such that the overlay is in the middle of the screen (or ...
0
votes
1answer
199 views

Scroll view problem?

I arranged imageview in the scrollview if the image is larger than the display, it shows blur edges (not sharp edges). <ScrollView android:layout_marginTop="35dip" android:id="@+id/sv" ...
0
votes
0answers
138 views

Updating individual scroll views with content

It may be quite difficult to explain this but here goes. If you are familiar with the BBC or the Pulse apps, then you'll have a better idea of what I'm trying to explain. For these apps they have ...
0
votes
1answer
1k views

Fit imageview to the scrollview size

I have an HorizontalScrollView with 2 Imageview. The HorizontalScrollView is embedded in a ScrollView. I would like that if the picture is too big (width and/or height) to fit, it will be cropped to ...
1
vote
1answer
2k views

Android how do I zoom and scroll a bitmap which is created on the fly

In my application, i'm using the following code for holding a map which is downloaded from a server. <?xml version="1.0" encoding="utf-8"?> <ScrollView ...
0
votes
2answers
366 views

How to scroll automatically to a point in an image

I'm writing an application for android in eclipse and my problem is: I'm using ScrollView that contains an ImageView to contain an image. In the image there are several locations that the user can ...
0
votes
1answer
615 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 ...
0
votes
0answers
1k views

Zoom & Pinch & Tap Zoom

How can I zoom, pinch or Tap zoom? I tried with the code below, but it does not work. MyViewController.m #import "MyViewController.h" static NSArray *__pageControlColorList = nil; ...

1 2