-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
I would like the ability to animate a UI element’s height and width. Here’s my use case: I have a container that I need to grow after a user interaction. If I use a scale animation on the container, everything in the container (text fields, buttons, labels, etc) scales as well, which I don’t want. I just want the container to grow and everything in the container to keep the same dimensions.
Now I can workaround this by absolutely positioning an element behind my content and scaling that element instead, but that code bloats my XML file, and, it’s really hard to get all the dimensions and positioning of these elements to line up perfectly across devices and screen sizes.
I realize this is not an easy thing to implement, as I’m sure there are layout considerations, but I thought I’d log this limitation to see if others in the community are hitting this problem as well.