I have an ImageView that is twice the height of a normale screen ( 960 dip). I would like to scroll it nicely up and down on the screen. The bottom of the screen should contain a button. I have tried various combinations of ScrollView and Imageviews without any success. I have also thinkered with the :isScrollContainer attribute without results. Anyone knows how to do this? Cheers, Luca
feedback
|
|
@cV2 Thank you so much for that code. It got me going in the direction I needed. Here's my modified version which stops scrolling at the edges of the image...
I'm sure it could be refined a bit, but it works pretty well. :) | |||
|
feedback
|
|
I searched so long for this Code, so I wanted to share this great peace of code: this code is from an Activity, which has a xml file on the backend containing an ImageView called 'img'
did the job perfectly for me... horizontal & vertical scrolling included (enabled) only negative side is... you can scroll over the edge of the picture... but this is no problem for me.. and spending some time you could easily implement this feature :) good luck && have fun | |||
|
feedback
|
|
The easiest way is imho to use a webview and load the image into it via a local html file. This way you will also automatically get the zoom controls if you want to use them. For a large image (i.e. if it's 1000 or 3000 px wide) you will notice that Android (Coliris) isn't very good at displaying large zoomed images very sharp, even if the original images is sharp and uncompressed). This is a known issue. The solution for that is to break down the large image into smaller tiles and put them together again via html (div's or table). I use this approach to provide a subway map (larger than the screen and scrollable) to the user.
This might work for most cases / 'regular apps', although depends on your particular case. If you are talking about a image as a scrollable background of a game, it might not be useful for you. Instead of a html file, you could also load the image directly (png, jpg). If you don't want the zoom control, just turn them off. | |||||
feedback
|
|
@wirbly Thank you so much for your code, it works exactly the way I want. But when i first read your code, I was a little confused about the four variables that you forgot to define (I'm still a new fish in android :)). So, i want to add the definition for the code to make it clearer. PS: My English is not very good.
Hope it's helpful. | ||||
|
feedback
|
|
Another way is to create a | ||||
|
feedback
|
|
hey guys found an easy and 100% reliable solution as Mr X mentioned above(as the other codes mentioned weren't working working on some devices or breaking) Simply use ScrollView provided by android and it takes care of stuff something like this
and in oncreate something like this
Cheers! | |||
|
feedback
|