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
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);