Android: How to make the flip animation for android activity, as like iphone flip horizontal from left to right?

前端 未结 4 728
孤街浪徒
孤街浪徒 2021-01-31 22:29

In My application i want to flip the view.. I have seen such animation in iPhone. And Same thing i want in to my android application.

I want to flip the whole activity

4条回答
  •  眼角桃花
    2021-01-31 23:17

    You can make a very similar with these xml files.

    rotate_out.xml

    
    

    
    
    
    

    rotate_in.xml

    
    

    
    
    
    

    Then in your code override transition after startActivity() or finish():

    overridePendingTransition(R.anim.rotate_in, R.anim.rotate_out);
    

提交回复
热议问题