Manipulating Images, Is there a library for Implementing Pinch Zoom/ Auto
Resizing/ Swipe for images?
So I finally figured out how to load an image...
ImageView imgView =(ImageView)findViewById(R.id.imageView1);
Picasso.with(this).load("http://www.nasa.gov/images/content/711375main_grail20121205_4x3_946-710.jpg").into(imgView);
Now the next step. Basically I want to show a List, pick an item, an image
pops up, swipe right for the next one, left for the previous. Easy enough.
All my images are almost always going to be quite big, Bigger than the
screen for most devices.
So I need to Resize it according to width, Make it zoomable, just in case
there's some text on the image that the user can magnify and read, and
ofcourse Swiping away.
I can rub noses and research these features and functions... But is there
a library which has done it all ? (Ready-made, just add a jar and a few
lines of codes...)
Or any easier way to go about implementing all this stuff ?
(A little off-topic, I know. But this question, if an answer exists, could
help a lot of people)
Thank you ! :-)
No comments:
Post a Comment