0

Is there any way to make an animation where the current page on an android application gets split down the middle and moves to both sides then leading to another page?

kiwi
  • 1
  • 5
  • [Looks like you need to use bitmaps](http://stackoverflow.com/questions/16116069/animated-screensplitting-in-android) – aProperFox Oct 10 '14 at 22:00

1 Answers1

0

Here's how I would approach it:

Create a bitmap of the screen. (Create image from view/screen in Android)

Split the bitmap into 2. (How to split image to 2 parts?)

Animate the 2 bitmaps.

Community
  • 1
  • 1
dannyroa
  • 5,501
  • 6
  • 41
  • 59
  • Whats the code that will animate it to split, im kind of a noob at animations. – kiwi Oct 10 '14 at 23:26
  • Translate Animation. See http://stackoverflow.com/questions/10276251/how-to-animate-a-view-with-translate-animation-in-android. – dannyroa Oct 11 '14 at 00:20