mirror of
				https://github.com/SimpleMobileTools/Simple-Launcher.git
				synced 2025-06-05 21:59:15 +02:00 
			
		
		
		
	fix navigation bar being fully colored
This commit is contained in:
		| @@ -160,6 +160,11 @@ class MainActivity : SimpleActivity(), FlingListener { | |||||||
|         return null |         return null | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     override fun onStart() { | ||||||
|  |         super.onStart() | ||||||
|  |         home_screen_grid.appWidgetHost.startListening() | ||||||
|  |     } | ||||||
|  |  | ||||||
|     override fun onResume() { |     override fun onResume() { | ||||||
|         super.onResume() |         super.onResume() | ||||||
|         updateStatusbarColor(Color.TRANSPARENT) |         updateStatusbarColor(Color.TRANSPARENT) | ||||||
| @@ -194,11 +199,11 @@ class MainActivity : SimpleActivity(), FlingListener { | |||||||
|  |  | ||||||
|             refetchLaunchers() |             refetchLaunchers() | ||||||
|         } |         } | ||||||
|     } |  | ||||||
|  |  | ||||||
|     override fun onStart() { |         // avoid showing fully colored navigation bars | ||||||
|         super.onStart() |         if (window.navigationBarColor != resources.getColor(R.color.semitransparent_navigation)) { | ||||||
|         home_screen_grid.appWidgetHost.startListening() |             window.navigationBarColor = Color.TRANSPARENT | ||||||
|  |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     override fun onStop() { |     override fun onStop() { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user