Re: [android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread Dianne Hackborn
You need to design your two animations so both the entering and leaving animations continue running for the same amount of time. After the exit animation is done, its window is hidden. On Wed, Nov 18, 2009 at 6:52 PM, CyberQat wrote: > Thanks much guys... its ALMOST working perfectly. > > One m

[android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread CyberQat
Thanks much guys... its ALMOST working perfectly. One minor visual glitch, when I fly in the second view, the first view disappears behind it before the start of the animation resulting in a "black flash". Interestingly enough when I fly the second view out, I don't get this effect. How do I pre

Re: [android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread Mark Murphy
Dianne Hackborn wrote: > Fwiw, 2.0 introduces some new APIs to control the animation: > > http://developer.android.com/reference/android/app/Activity.html#overridePendingTransition(int, > int) > http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_NO_ANIMATION Oh, exce

Re: [android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread Dianne Hackborn
Fwiw, 2.0 introduces some new APIs to control the animation: http://developer.android.com/reference/android/app/Activity.html#overridePendingTransition(int, int) http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_NO_ANIMATION On Wed, Nov 18, 2009 at 7:43 AM, CyberQat

[android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread CyberQat
On Nov 18, 10:42 am, Mark Murphy wrote: > CyberQat wrote: > > So, how do apps fly in a new panel when you flick up?  Im sure I have > > apps on my phone that do this... > > They presumably are not using multiple activities. For example, you can > use a ViewFlipper and animations to achieve this

Re: [android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread Mark Murphy
CyberQat wrote: > So, how do apps fly in a new panel when you flick up? Im sure I have > apps on my phone that do this... They presumably are not using multiple activities. For example, you can use a ViewFlipper and animations to achieve this effect. > Are you sure? i have a Droid and its defin

[android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread CyberQat
To be clear... this question is "How do apps fly in a new panel *from the bottom* when a user flicks up?" > > So, how do apps fly in a new panel when you flick up?  Im sure I have > apps on my phone that do this... > > -- You received this message because you are subscribed to the Google Group

[android-developers] Re: Sub Acivity fly-in direction?

2009-11-18 Thread CyberQat
On Nov 18, 10:01 am, Mark Murphy wrote: > CyberQat wrote: > > Little question Ive been having difficulty finding an answer to. > > > My current app flies ina  sub activity when you flick-up.  problem is, > > it flies in horizontally from the right.  I want it to fly in > > vertically from the bo