I'm converting an app from iphone to Android.  On iphone there's a
function called animateWithDuration that makes it easy to fade in UI
stuff and slide in UI stuff.  For instance, this fades some text in…
then out:


  [UIView animateWithDuration:0.3 delay:0 options:0 animations:^{
    [notification_ setAlpha:1.0];
  } completion:^(BOOL finished) {
    if (!finished)
      return;
    [UIView animateWithDuration:0.3 delay:2.5 options:0 animations:^{
      [notification_ setAlpha:0.0];
    } completion:^(BOOL finished) { }];
  }];


Is there any kind of Android equivalent?

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to