Matthias Käppler

Results 97 comments of Matthias Käppler

Try adding this to your ProGuard config: ``` -keep class com.google.common.base.Finalizable* { ; ; } -keep class com.google.common.base.internal.Finalizer { ; ; } ```

Do you have sample code that I can use to reproduce the issue?

I think I see what the issue is. This is not due to a recent SDK/tools update though, it's basically the same as issue #14. This is because all view...

Now that I think about it, another way could be to actually make RemoteImageView inherit from ImageView so that it actually becomes a proper ImageView (this would render the whole...

this should be fixed by 7a66e9a06b511bf4da1eb21141a17017dd3fd730 Can you please test this?

Thanks Michael. Have a look at the changed sample app as well. Previously RemoteImageView didn't actually behave like a native ImageView (since it wasn't an ImageView, but a ViewSwitcher), so...

Yes, that's because the view doesn't distinguish between an image coming from the cache or the web. I guess this is a problem specific to ListView, because it's the only...

Background reading: http://code.google.com/p/android/issues/detail?id=20015 http://blog.wu-man.com/2012/01/lrucache-with-softreference-on-android.html

yeah that was the plan; the library only uses Guava for the MapMaker bits. I'm not sure how much I'll be working on this anymore though, since I'm not working...