我正在使用CoordinatorLayout和这个(app:layout_scrollFlags="scroll|enterAlways"
)代码行,以便在滚动RecyclerView时隐藏工具栏。这也很好用,但工具栏不会隐藏在状态栏后面,因为它是透明的。
我的布局看起来像这样
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.yannisbecker.backup.MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_backup_white_24dp"/>
</android.support.design.widget.CoordinatorLayout>
由于我已经搜索了互联网,并且发现了很多关于“如何使状态栏透明”的内容,我现在在这里问,并希望有人可以帮助我。
因为我没有声望,但是,你可以找到一个图像,显示我的问题here
答案 0 :(得分:0)
如果要在滚动回收器视图时隐藏状态栏下的工具栏,则必须根据自己的喜好更改状态栏的颜色,并从中删除此属性:android:fitsSystemWindows="true"
<CoordinatorLayout>
代码。
可以使用getWindow.setStatusBarColor()
方法在MainActivity中设置状态栏的颜色:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setStatusBarColor(getResources().getColor(R.color.primary_dark));
}
或
在AppTheme.NoActionBar
样式
<item name="android:statusBarColor">@android:color/color_of_your_choice</item>