Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
BlissLauncher
Commits
7f118f16
Commit
7f118f16
authored
Oct 28, 2021
by
Amit Kumar
💻
Browse files
Change status bar color to light
parent
dab5dea1
Pipeline
#143146
passed with stage
in 10 minutes and 2 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/foundation/e/blisslauncher/features/test/BaseActivity.java
View file @
7f118f16
...
...
@@ -137,6 +137,10 @@ public abstract class BaseActivity extends Activity {
mActivityFlags
&=
~
ACTIVITY_STATE_STARTED
&
~
ACTIVITY_STATE_USER_ACTIVE
;
mForceInvisible
=
0
;
super
.
onStop
();
// Reset the overridden sysui flags used for the task-swipe launch animation, this is a
// catch all for if we do not get resumed (and therefore not paused below)
getSystemUiController
().
updateUiState
(
SystemUiController
.
UI_STATE_OVERVIEW
,
0
);
}
@Override
...
...
@@ -148,7 +152,7 @@ public abstract class BaseActivity extends Activity {
// here instead of at the end of the animation because the start of the new activity does
// not happen immediately, which would cause us to reset to launcher's sysui flags and then
// back to the new app (causing a flash)
getSystemUiController
().
updateUiState
(
SystemUiController
.
UI_STATE_
NORMAL
,
0
);
getSystemUiController
().
updateUiState
(
SystemUiController
.
UI_STATE_
OVERVIEW
,
0
);
}
public
boolean
isStarted
()
{
...
...
app/src/main/java/foundation/e/blisslauncher/features/test/TestActivity.kt
View file @
7f118f16
...
...
@@ -277,7 +277,7 @@ class TestActivity : BaseDraggingActivity(), AutoCompleteAdapter.OnSuggestionCli
systemUiController
.
updateUiState
(
SystemUiController
.
UI_STATE_BASE_WINDOW
,
tru
e
fals
e
)
rotationHelper
.
initialize
()
TraceHelper
.
endSection
(
"Launcher-onCreate"
)
...
...
Write
Preview
Supports
Markdown
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