I have the following view:
------------------------------------
o Menu1 |
@ Menu2 |
# Menu3 | CONTENT
|
|
------------------------------------
And I want to create an animation that shrinks the menu bar to show just the icons like this:
------------------------------------
o |
@ |
# | CONTENT
|
|
------------------------------------
I already make the change work by applying Visibility.GONE to the text labels and resizing the LinearLayout that contains the menu but I want to animate that "shrinking" effect. I tried applying an scale animation along x but this doesn't work. Anybody already did something similar?