Hi,
Inside of a ListView row, I have a box (right now its an imageview, but i will probably be converting it to a linear or relative layout object at some point). when you click on the box, i have it start a scale animation that makes it appear to grow. however, once the animation is over, the box goes immediately back to its original state. I'd like to have the box stay at the transformed size (at least until they click it again).
here's the xml:
<scale
android:fromXScale="1" android:toXScale="5"
android:fromYScale="1" android:toYScale="1"
android:pivotX="100%" android:pivotY="0%" android:fillAfter="true"
android:duration="600" />