Android card fragment animation

后端 未结 2 1543
闹比i
闹比i 2021-02-11 07:23

It seems like a challenging animation, but I have a feeling this can be done very easily. I am trying to achieve an animation between Fragments like below (see 2nd and 3rd quadr

2条回答
  •  太阳男子
    2021-02-11 08:14

    For folks who come to this question looking for similar requirement:

    As Anoop suggests, official documentation is great. Simply implement viewPager.PagerTransform and supply the class to your viewPager. Also, transformPage (the implemented function) is very important in animation transition.

    Next part, was to show corners of next and previous fragments. This can be acheived through xml of fragments. Reference : Android tip viewpager with protruding children

    Hopes this helps someone to create interactive apps.

    UPDATE

    This post shared by Anoop makes this transformation a breeze. cheers!

提交回复
热议问题