Re: [android-developers] Re: How do I flip images?

2013-08-12 Thread N. Paudyal
Hey, yes, this does help a little.  It doesnt allow flexiblity with regards
to animations though, for example, I cant do the flip like here...
http://developer.android.com/training/animation/cardflip.html with the
finger...


On Mon, Aug 12, 2013 at 3:05 PM, Shadab Khatib wrote:

> Hello,
> For starters you can have a look at the Screen Slides methodology using
> ViewPager for Screen Slides.
> You can find the documentation for it in the link below
> http://developer.android.com/training/animation/screen-slide.html
> Hope it solves some part of your query.
> Thank You
>
>
> On Thursday, 8 August 2013 01:29:47 UTC+5:30, SonyPhoneGuy wrote:
>>
>> I am trying to do some flip animation.
>>
>> I have been able to successfully use the ObjectAnimator to do a few
>> flips, but I am trying to re-create a more believable page flip - rather
>> like a book flip - similar to what is used in Play Books.
>>
>> Is there any easy way to do this? any documentations around?
>>
>> 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/6Nupi1tOLP4/unsubscribe
> .
> 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.




Re: [android-developers] Re: How do I flip images?

2013-08-08 Thread SonyPhoneGuy
Hey, thanks for that, I just needed to know if there was something in the 
documentation I was missing/if there was an easy way to achieve the effect. 
 Will have to settle for a horizontal scroll, with a bit of drop shadow, 
doesnt look too bad actually, especially when its moved with the finger 
swipe.

On Wednesday, August 7, 2013 10:01:37 PM UTC+1, Nobu Games wrote:
>
> Unfortunately not, it's simply too specific. In that case you may have to 
> roll your own implementation, I'm afraid. Or better: just simplify your 
> requirements and use a ViewPager for flipping your pages. It's just a 
> horizontal scroll animation but it's ok.
>
> On Wednesday, August 7, 2013 3:31:21 PM UTC-5, SonyPhoneGuy wrote:
>>
>> I cant seem to find a good one... The only one thats slightly pleasing 
>> is: https://code.google.com/p/android-page-curl/  
>>
>> I downloaded their reader off the app market which implements it.  Its 
>> awful.
>>
>> I thought there would be some easy way of doing what the Play Book does, 
>> thought there would be some native method of doing this...
>>
>>
>> On Wed, Aug 7, 2013 at 9:16 PM, Nobu Games  wrote:
>>
>>> I was in the same shoes a while ago. There is no easy way to get a 
>>> convincing animation. And you cannot get it at all using Android animation 
>>> objects.
>>>
>>> There are a few "page curl", "page flip" tutorials out there. It will 
>>> boil down to creating your own view that renders it. And that's not really 
>>> trivial to do especially when you want to make that "interactive" by 
>>> dragging around the page and changing the curl dynamically based on the 
>>> finger position. Maybe you'll find a ready made component for Android by 
>>> searching for "Android page curl".
>>>
>>>
>>> On Wednesday, August 7, 2013 2:59:47 PM UTC-5, SonyPhoneGuy wrote:

 I am trying to do some flip animation.

 I have been able to successfully use the ObjectAnimator to do a few 
 flips, but I am trying to re-create a more believable page flip - rather 
 like a book flip - similar to what is used in Play Books.

 Is there any easy way to do this? any documentations around?

 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-d...@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/6Nupi1tOLP4/unsubscribe
>>> .
>>> 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.




Re: [android-developers] Re: How do I flip images?

2013-08-07 Thread Nobu Games
Unfortunately not, it's simply too specific. In that case you may have to 
roll your own implementation, I'm afraid. Or better: just simplify your 
requirements and use a ViewPager for flipping your pages. It's just a 
horizontal scroll animation but it's ok.

On Wednesday, August 7, 2013 3:31:21 PM UTC-5, SonyPhoneGuy wrote:
>
> I cant seem to find a good one... The only one thats slightly pleasing is: 
> https://code.google.com/p/android-page-curl/  
>
> I downloaded their reader off the app market which implements it.  Its 
> awful.
>
> I thought there would be some easy way of doing what the Play Book does, 
> thought there would be some native method of doing this...
>
>
> On Wed, Aug 7, 2013 at 9:16 PM, Nobu Games 
> > wrote:
>
>> I was in the same shoes a while ago. There is no easy way to get a 
>> convincing animation. And you cannot get it at all using Android animation 
>> objects.
>>
>> There are a few "page curl", "page flip" tutorials out there. It will 
>> boil down to creating your own view that renders it. And that's not really 
>> trivial to do especially when you want to make that "interactive" by 
>> dragging around the page and changing the curl dynamically based on the 
>> finger position. Maybe you'll find a ready made component for Android by 
>> searching for "Android page curl".
>>
>>
>> On Wednesday, August 7, 2013 2:59:47 PM UTC-5, SonyPhoneGuy wrote:
>>>
>>> I am trying to do some flip animation.
>>>
>>> I have been able to successfully use the ObjectAnimator to do a few 
>>> flips, but I am trying to re-create a more believable page flip - rather 
>>> like a book flip - similar to what is used in Play Books.
>>>
>>> Is there any easy way to do this? any documentations around?
>>>
>>> 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-d...@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/6Nupi1tOLP4/unsubscribe
>> .
>> 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.




Re: [android-developers] Re: How do I flip images?

2013-08-07 Thread N. Paudyal
I cant seem to find a good one... The only one thats slightly pleasing is:
https://code.google.com/p/android-page-curl/

I downloaded their reader off the app market which implements it.  Its
awful.

I thought there would be some easy way of doing what the Play Book does,
thought there would be some native method of doing this...


On Wed, Aug 7, 2013 at 9:16 PM, Nobu Games  wrote:

> I was in the same shoes a while ago. There is no easy way to get a
> convincing animation. And you cannot get it at all using Android animation
> objects.
>
> There are a few "page curl", "page flip" tutorials out there. It will boil
> down to creating your own view that renders it. And that's not really
> trivial to do especially when you want to make that "interactive" by
> dragging around the page and changing the curl dynamically based on the
> finger position. Maybe you'll find a ready made component for Android by
> searching for "Android page curl".
>
>
> On Wednesday, August 7, 2013 2:59:47 PM UTC-5, SonyPhoneGuy wrote:
>>
>> I am trying to do some flip animation.
>>
>> I have been able to successfully use the ObjectAnimator to do a few
>> flips, but I am trying to re-create a more believable page flip - rather
>> like a book flip - similar to what is used in Play Books.
>>
>> Is there any easy way to do this? any documentations around?
>>
>> 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/6Nupi1tOLP4/unsubscribe
> .
> 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.