Commit 3b9d8c5e authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Call onPostResume to restart the animator in the example Android activity (#4634)

(onResume is now a no-op)

Fixes https://github.com/flutter/flutter/issues/4506
parent c707b53f
......@@ -73,9 +73,9 @@ public class ExampleActivity extends Activity {
}
@Override
protected void onResume() {
super.onResume();
flutterView.onResume();
protected void onPostResume() {
super.onPostResume();
flutterView.onPostResume();
}
@Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment