Re: [android-developers] MAX Repeat count of windowEnterAnimation

2012-08-10 Thread Dianne Hackborn
No the window will only execute an animation when it goes through the corresponding transition -- enter animations exit when the window is shown, exit when it is hidden, etc. On Fri, Aug 10, 2012 at 4:17 AM, danaimset wrote: > Thanks a lot, Dianne! > > I believe it can be done by using the follo

Re: [android-developers] MAX Repeat count of windowEnterAnimation

2012-08-10 Thread danaimset
Thanks a lot, Dianne! I believe it can be done by using the following method if you need to provide some animation to PopupWindow: http://developer.android.com/intl/ru/reference/android/widget/PopupWindow.html#update(android.view.View, int, int, int, int) But in that case a programmer should

Re: [android-developers] MAX Repeat count of windowEnterAnimation

2012-08-09 Thread Dianne Hackborn
The window manager limits the duration of animations, I believe to 10 seconds or so. Don't do this. It is not right to have a window animation that runs indefinitely. On Thu, Aug 9, 2012 at 3:03 PM, danaimset wrote: > Hi Guys! > > I've face with problems with windowEnterAnimation. > I'm trying

[android-developers] MAX Repeat count of windowEnterAnimation

2012-08-09 Thread danaimset
Hi Guys! I've face with problems with windowEnterAnimation. I'm trying to animate popup window over the view for infinite. But it seems that windowEnterAnimation has limitation of repeat count.