Skip to content

Commit f37d87b

Browse files
chethaaseAndroid (Google) Code Review
authored andcommitted
Merge "Fix init of Animation in View drawing code"
2 parents 9687433 + 1fb8a9e commit f37d87b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/view/View.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12297,7 +12297,7 @@ private boolean drawAnimation(ViewGroup parent, long drawingTime,
1229712297
final int flags = parent.mGroupFlags;
1229812298
final boolean initialized = a.isInitialized();
1229912299
if (!initialized) {
12300-
a.initialize(mRight - mLeft, mBottom - mTop, getWidth(), getHeight());
12300+
a.initialize(mRight - mLeft, mBottom - mTop, parent.getWidth(), parent.getHeight());
1230112301
a.initializeInvalidateRegion(0, 0, mRight - mLeft, mBottom - mTop);
1230212302
onAnimationStart();
1230312303
}

0 commit comments

Comments
 (0)