We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16814c3 commit 7352d01Copy full SHA for 7352d01
demo/src/main/java/cn/gorouter/activity/BaseActivity.kt
@@ -12,6 +12,9 @@ abstract class BaseActivity : AppCompatActivity() {
12
override fun onCreate(savedInstanceState: Bundle?) {
13
super.onCreate(savedInstanceState)
14
transparentStatusBar()
15
+ if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
16
+ window.navigationBarColor = Color.BLACK
17
+ }
18
setContentView(bindLayout())
19
initViews()
20
0 commit comments