Re: [android-developers] Re: Example gallery style view with fling, bounce, animation, etc

2010-07-09 Thread Australuke
No, original del key problem remains. Actually i never got any response to my original questions about it. If I were you I would be tempted to pull a copy of the android gallery class source code into your project and start commenting out code until the problem goes away. I often find this is a qui

Re: [android-developers] Re: Example gallery style view with fling, bounce, animation, etc

2010-07-04 Thread Australuke
Hi, i only have time for a quick reply. Inflating each view will have a performance hit on the fling animation; if there are only five then inflate them first in onCreate and store them in an array. Then modify getView to return the appropriate view from the array. This will of course mean there w

Re: [android-developers] Re: Example gallery style view with fling, bounce, animation, etc

2010-06-15 Thread Australuke
Thanks, interesting to know. I plan to use it in an app I am working on so ill have a look at getting it working on 1.5. On 15 Jun 2010 17:53, "Neilz" wrote: > Yes, I tried the FILL_PARENT, and it works fine with that instead. > > However on my older device with 1.5, it fails: > > Caused by: java

Re: [android-developers] Re: Gallery elasticity at the ends

2010-06-14 Thread Australuke
Sorry. Updated the link. I also have the whole project including apk on my Zumo drive at http://www.zumodrive.com/share/5SBbYzk0Mj. On 6/14/10, droidful wrote: > Sorry about that, correct link is > http://groups.google.com/group/android-developers/browse_thread/thread/27d5f678be44c370/3f5ec157b37

Re: [android-developers] Re: What is best method for an animation worker thread?

2010-06-13 Thread Australuke
Well i overrode getTransformation to handle completion and cancellation so no probs! Interestingly the UI now updates much smoother, i must check the android source to see what they are doing. Anyway, yeah, AsyncTask just didnt feel right, thanks again for pointing me in the right direction -- Y