Allow null target in ObjectAnimator if the target has never been set
BUG: 31684571 Test: http://ag/1484115 Change-Id: I867fc3f93ddf70c58ae4387317ac875c5bafbebe
This commit is contained in:
@@ -977,8 +977,9 @@ public final class ObjectAnimator extends ValueAnimator {
|
|||||||
@Override
|
@Override
|
||||||
void animateValue(float fraction) {
|
void animateValue(float fraction) {
|
||||||
final Object target = getTarget();
|
final Object target = getTarget();
|
||||||
if (target == null) {
|
if (mTarget != null && target == null) {
|
||||||
// We lost the target reference, cancel and clean up.
|
// We lost the target reference, cancel and clean up. Note: we allow null target if the
|
||||||
|
/// target has never been set.
|
||||||
cancel();
|
cancel();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user