Button Moves To Different Part Of Screen But Can Only Press It At Its Initial Spot?
Brief summary of my app: there are 2 buttons and a text view widget. Once the user clicks on the 'Start' button, it will trigger a method in the that will shift the 'main' button t
Solution 1:
This is expected. The original animation framework animates the pixels, not the touch zones of a widget.
The property animation framework -- including the NineOldAndroids backport -- moves the actual widget, including its touch zones.
Post a Comment for "Button Moves To Different Part Of Screen But Can Only Press It At Its Initial Spot?"