Android Facebook style slide

前端 未结 25 2430
粉色の甜心
粉色の甜心 2020-11-22 03:23

The new Facebook application and its navigation is so cool. I was just trying to see how it can be emulated in my application.

Anyone has a clue how it can be achie

25条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-22 03:43

    Can't comment on the answer given by @Paul Grime yet, anyway I've submitted on his github project the fix for the flicker problem....

    I'll post the fix here, maybe someone needs it. You just need to add two lines of code. The first one below the anim.setAnimationListener call:

    anim.setFillAfter(true);
    

    And the second one after app.layout() call:

    app.clearAnimation();
    

    Hope this helps :)

提交回复
热议问题