fix navigation bar being fully colored
This commit is contained in:
parent
83f2c34f21
commit
5c89f1cc7c
|
@ -160,6 +160,11 @@ class MainActivity : SimpleActivity(), FlingListener {
|
|||
return null
|
||||
}
|
||||
|
||||
override fun onStart() {
|
||||
super.onStart()
|
||||
home_screen_grid.appWidgetHost.startListening()
|
||||
}
|
||||
|
||||
override fun onResume() {
|
||||
super.onResume()
|
||||
updateStatusbarColor(Color.TRANSPARENT)
|
||||
|
@ -194,11 +199,11 @@ class MainActivity : SimpleActivity(), FlingListener {
|
|||
|
||||
refetchLaunchers()
|
||||
}
|
||||
}
|
||||
|
||||
override fun onStart() {
|
||||
super.onStart()
|
||||
home_screen_grid.appWidgetHost.startListening()
|
||||
// avoid showing fully colored navigation bars
|
||||
if (window.navigationBarColor != resources.getColor(R.color.semitransparent_navigation)) {
|
||||
window.navigationBarColor = Color.TRANSPARENT
|
||||
}
|
||||
}
|
||||
|
||||
override fun onStop() {
|
||||
|
|
Loading…
Reference in New Issue