0

I have to make complicated animated menu sliding from the top of the screen. Due to it's nature I can't use slidingDrawer... Is there any other option for it?

mglisty
  • 151
  • 2
  • 4
  • 15

2 Answers2

0

You should be able to animate a whole layout off the screen, if you supply negative parameters. This would allow you to hide a layout above or under the screen and slide it in once it is needed.

Janusz
  • 187,060
  • 113
  • 301
  • 369
0

You could probably accomplish this using a Canvas and Drawables. Look here:

http://developer.android.com/guide/topics/graphics/2d-graphics.html

DevinFalgoust
  • 134
  • 1
  • 2
  • 8