TouchImageView & Volley NetworkImageView working together

558 Views Asked by At

I'm Using a ViewPager in my project and so far i found Volley to be very good at loading in the images for the individual pages.

Volley needs com.android.volley.toolbox.NetworkImageView and TouchImageView needs com.android.touch.TouchImageView for ImageView in the xml

My question is how i do combine both of these

I cant get the zoom to work when using Volley

Or i can get the zoom to work by loading in standard bitmaps but swapping pages is slow with that and i'm not that experienced with Bitmaps cashing etc hence why i need volley for the easy of use.

Is there a way to get both of these to work together.

My Pager code

enter image description here

Thanks

UPD

I noticed in touch view class public class TouchImageView extends ImageView {

I wonder if changing to public class TouchImageView extends NetworkImageView { would make it work.

but i moved on since i asked the Q and now use uni image loaded instead. Just out of interest Ill give this a go at some stage and report back. It may be that simple

1

There are 1 best solutions below

4
On

Well if you are sure the issue is with this line:

Bitmap bitmap = BitmapFactory.decodeByteArray(entry.data, 0, entry.data.length);

then you can run this in an AsyncTask and that'll be better I think.

But I suggest you using Picasso library for image loading, because there are many articles out there that say Picasso is faster in image loading and handles all the hard work itself (caching and...).

Then you can use TouchImageView with Picasso.load(urlString).into(touchImageView);