I am working on animating custom Views for my Android app. I have accomplished this via Property Animations and calling invalidate()
on the View in the onAnim
Since there are no codes attached, I'm assuming you have some transition animation to the activity. If this is the case, it might cause the problem.Since there are two animations running simultaneously. Disable the transition and give it try.
startActivity(intent);
getActivity().overridePendingTransition(0, 0);