Commit 8167bdc4 authored by zhengyingbing's avatar zhengyingbing
Browse files

fix(app): 修改接口onRestoreInstanceState,onWindowFocusChanged

parent 274b4acc
No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
......@@ -255,11 +255,13 @@ public class MainActivity extends Activity {
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
FastSdk.onRestoreInstanceState(savedInstanceState);
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
FastSdk.onWindowFocusChanged(hasFocus);
}
......
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