如何使用 Kotlin 使状态栏完全透明且文本颜色为深色
How to make the status bar completely transparent with dark text color with Kotlin
我使用 Kotlin 创建了一个 android 应用程序,我想知道如何使用 Kotlin 使状态栏完全透明且文本颜色为深色
我看到了以下解决方案,但对我不起作用
这是我的以下代码:
if (VERSION.SDK_INT in 19..20) {
setWindowFlag(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, true)
}
if (VERSION.SDK_INT >= 19) {
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_LAYOUT_STABLE or View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
}
if (VERSION.SDK_INT >= 21) {
setWindowFlag(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, false)
window.statusBarColor = Color.TRANSPARENT
}
这是 style.xml 中的自定义样式:
<style name="MyStyle" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowNoTitle">true</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:navigationBarColor">@android:color/black</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
还有我的 xml 代码:
<..... android:fitsSystemWindows="true" ....>
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="189dp"
app:elevation="0dp"
android:theme="@style/MyStyle" ....>
我想知道我的代码哪里出了问题,我怎样才能更正它以使状态栏完全透明,文本颜色为深色
您必须遵循三个步骤。
更新您的 style.xml 和主题
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
在你的主要 xml 添加
android:fitsSystemWindows="true"
在你的activity之前setcontView
添加
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
Window w = getWindow();
w.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
}
我使用 Kotlin 创建了一个 android 应用程序,我想知道如何使用 Kotlin 使状态栏完全透明且文本颜色为深色
我看到了以下解决方案,但对我不起作用
if (VERSION.SDK_INT in 19..20) {
setWindowFlag(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, true)
}
if (VERSION.SDK_INT >= 19) {
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_LAYOUT_STABLE or View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
}
if (VERSION.SDK_INT >= 21) {
setWindowFlag(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, false)
window.statusBarColor = Color.TRANSPARENT
}
这是 style.xml 中的自定义样式:
<style name="MyStyle" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowNoTitle">true</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:navigationBarColor">@android:color/black</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
还有我的 xml 代码:
<..... android:fitsSystemWindows="true" ....>
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="189dp"
app:elevation="0dp"
android:theme="@style/MyStyle" ....>
我想知道我的代码哪里出了问题,我怎样才能更正它以使状态栏完全透明,文本颜色为深色
您必须遵循三个步骤。
更新您的 style.xml 和主题
<item name="android:windowTranslucentStatus">true</item> <item name="android:windowTranslucentNavigation">true</item>
在你的主要 xml 添加
android:fitsSystemWindows="true"
在你的activity之前
setcontView
添加if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { Window w = getWindow(); w.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); }