Android Fullscreen
沉浸状态栏应用Android应用中很常见,作为新手自己找了很多资料,并无比较完美的结果,也问了身边做Android的大佬,给出的答案也理想,自己各种bing,最终终于找个了满意的结果。 具体实现代码(Kotlin)如下:
if (Build.VERSION.SDK_INT >= 30) {
window.setDecorFitsSystemWindows(false)
} else {
@Suppress("DEPRECATION")
window.decorView.systemUiVisibility = (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
or View.SYSTEM_UI_FLAG_LAYOUT_STABLE)
}
全屏后 Toolbar 最好使用 AppBarLayout 包裹,设置 AppBarLayout 背景颜色即可完成顶部的 Toolbar 大概如下:
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:overScrollMode="always"
app:layout_scrollFlags="snap|exitUntilCollapsed"
app:title="@string/nav_giftware_title"
app:titleTextColor="@color/white" />
</com.google.android.material.appbar.AppBarLayout>
Read other posts