Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sdk-public
sdk-demo
Commits
8167bdc4
Commit
8167bdc4
authored
Nov 20, 2023
by
zhengyingbing
Browse files
fix(app): 修改接口onRestoreInstanceState,onWindowFocusChanged
parent
274b4acc
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/com/hl/demo/MainActivity.java
View file @
8167bdc4
...
@@ -255,11 +255,13 @@ public class MainActivity extends Activity {
...
@@ -255,11 +255,13 @@ public class MainActivity extends Activity {
@Override
@Override
protected
void
onRestoreInstanceState
(
Bundle
savedInstanceState
)
{
protected
void
onRestoreInstanceState
(
Bundle
savedInstanceState
)
{
super
.
onRestoreInstanceState
(
savedInstanceState
);
FastSdk
.
onRestoreInstanceState
(
savedInstanceState
);
FastSdk
.
onRestoreInstanceState
(
savedInstanceState
);
}
}
@Override
@Override
public
void
onWindowFocusChanged
(
boolean
hasFocus
)
{
public
void
onWindowFocusChanged
(
boolean
hasFocus
)
{
super
.
onWindowFocusChanged
(
hasFocus
);
FastSdk
.
onWindowFocusChanged
(
hasFocus
);
FastSdk
.
onWindowFocusChanged
(
hasFocus
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment