[android-developers] Re: Traslate Animation in ListView (like Google Plus App)

2013-07-02 Thread Alexander Osmanov
Hi, there is a similar approach plus explanation of how you can add 
distortion to list views in my blog. I hope it helps.

http://thehiddenduck.blogspot.ru/2013/06/adding-item-animations-to-listview.html

On Thursday, February 7, 2013 6:16:59 PM UTC+4, 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.

-- 
-- 
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
--- 
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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Traslate Animation in ListView (like Google Plus App)

2013-04-26 Thread Gianluca Cacace
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 

>
> 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 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
> ---
> 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
> android-developers+unsubscr...@googlegroups.com.
>
> 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 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
--- 
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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Traslate Animation in ListView (like Google Plus App)

2013-04-23 Thread dman65

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 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
--- 
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 android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.