RecyclerView 中的第一项不在状态栏下
First item in RecyclerView does not go under status bar
我有以下布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.skillberg.weather.ui.activity.MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/weather_rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fitsSystemWindows="true" />
</android.support.design.widget.CoordinatorLayout>
和风格:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBarOverlay">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
我希望 RecyclerView 中的第一个项目显示在状态栏下方(如工具栏),但它没有显示在那里:
然而,RecyclerView 本身在状态栏下方绘制,但似乎有一些顶部填充高度 = 状态栏高度:
如何解决?
在您的 CoordinatorLayout 中将此 android:fitsSystemWindows="true"
更改为 false
您缺少与 CoordinatorLayout 配合使用的行为。
只需将它添加到您的 RecyclerView 中,如下所示:
<android.support.v7.widget.RecyclerView
android:id="@+id/weather_rv"
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fitsSystemWindows="true" />
用windowTranslucentStatus
扩展你的AppTheme
,例如
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowTranslucentStatus">true</item>
// other stuff
</style>
这将使 StatusBar
变得透明。您不需要使用 android:fitsSystemWindows
.
我有以下布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.skillberg.weather.ui.activity.MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/weather_rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fitsSystemWindows="true" />
</android.support.design.widget.CoordinatorLayout>
和风格:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBarOverlay">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
我希望 RecyclerView 中的第一个项目显示在状态栏下方(如工具栏),但它没有显示在那里:
然而,RecyclerView 本身在状态栏下方绘制,但似乎有一些顶部填充高度 = 状态栏高度:
如何解决?
在您的 CoordinatorLayout 中将此 android:fitsSystemWindows="true"
更改为 false
您缺少与 CoordinatorLayout 配合使用的行为。 只需将它添加到您的 RecyclerView 中,如下所示:
<android.support.v7.widget.RecyclerView
android:id="@+id/weather_rv"
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:fitsSystemWindows="true" />
用windowTranslucentStatus
扩展你的AppTheme
,例如
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowTranslucentStatus">true</item>
// other stuff
</style>
这将使 StatusBar
变得透明。您不需要使用 android:fitsSystemWindows
.