我知道API级别19支持ObjectAnimators上的pause()和resume()。但是在我的API级别14的项目中,我有一个ObjectAnimator应用于ImageView以旋转它。我想在触摸时暂停ObjectAnimator提供的动画,然后从ImageView所在的位置(触地前)恢复它。所以我试图保存当前播放时间并取消我的stopAnimation()函数上的对象动画器。privatevoidstopAnimation(){currentTime=mGlobeAnimator.getCurrentPlayTime();mGlobeAnimator.cancel();}在