使用Toolbar
标志时如何获得好<item name="android:windowTranslucentStatus">true</item>
?
我尝试将fitSystemWindow
的几乎所有组合添加到我的视图层次结构中,但没有一个正在运行!
这是我的布局,效果最好:
<?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/activity_main"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
tools:context="fr.pdegand.fullscreentoolbar.MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:layout_scrollFlags="scroll|enterAlways"
app:title="Test"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_height="match_parent"
android:layout_width="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical">
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
<View
android:background="#FF00FF"
android:layout_height="400dp"
android:layout_width="match_parent"/>
<View
android:background="#00FF00"
android:layout_height="400dp"
android:layout_width="match_parent"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
但它有两个问题:首先,协调员使用colorPrimaryDark
填补状态栏的间隙,当视图完全滚动时,工具栏不会完全消失在屏幕顶部。< / p>
最好的结果是工具栏本身会拉伸它的顶部以填补空白,以便状态栏后面的颜色始终与工具栏的颜色相匹配(我的工具栏实际上在我的真实应用程序中具有动态着色)以及何时视图完全滚动工具栏应该完全消失在顶部。如果可能,没有代码。我知道我可以添加一些OnApplyWindowInsetsListener
并手动处理插图,但我正在寻找一个可以应用于我所有屏幕的更通用的解决方案。
感谢您的帮助。