Yes,

I've found a solution, try using this snippet (you've to start these two
animation on the created view inside onCreateView of your adapter):

AnimationSet set = new AnimationSet(true);

 AlphaAnimation animation = new AlphaAnimation(0.0f, 1.0f);

 animation.setDuration(100);

 set.addAnimation(animation);


 TranslateAnimation animation2 = new TranslateAnimation(

  Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,

  0.0f, Animation.RELATIVE_TO_SELF, 0.5f,

  Animation.RELATIVE_TO_SELF, 0.0f);

 animation2.setDuration(500);

 set.addAnimation(animation2);

--

*Gianluca Cacace*

Tel.: (+39) 340 5029624

http://www.linkedin.com/in/gcacace


2013/4/23 dman65 <[email protected]>

>
> On Thursday, February 7, 2013 9:16:59 AM UTC-5, Gianluca Cacace wrote:
>>
>> Has anyone idea to how to replicate the Google Plus listview behaviour,
>> when scrolling down the list? I want that each new cell is traslating from
>> the bottom to it's final position smoothly.
>
>
> Hello,
>
> I am interested in the same feature and I was wondering if you ever find a
> solution to this?
>
> Thank You
>
> --
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/kgMKOhY8qAg/unsubscribe?hl=en
> .
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
>
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to