I have a situation where I would like to programmatically change the gravity of my text view (Gravity.CENTER_HORIZONTAL
|Gravity.BOTTOM
to Gravity.START
|Gravity.BOTTOM
). Currently I'm using the setGravity()
method, but I'm wondering if there is anyway to set this to smoothly transition over to the new position rather than just jumping to the new discrete position.
Thanks, Hugh