Status Update
Comments
am...@google.com <am...@google.com>
ja...@gmail.com <ja...@gmail.com> #2
I am experiencing the same problem on multiple devices using 23.2.0
am...@google.com <am...@google.com> #3
Hi,
We have passed this defect on to the development team and will update this issue with more information as it becomes available.
Thanks
We have passed this defect on to the development team and will update this issue with more information as it becomes available.
Thanks
ja...@gmail.com <ja...@gmail.com> #4
This appears to specifically impact Android 5 and 6, but is ok on Android 4
fe...@gmail.com <fe...@gmail.com> #5
Same problem here.
[Deleted User] <[Deleted User]> #6
Same problem.
ch...@google.com <ch...@google.com> #8
This is a bug, but the fitSystemWindows on the CoordinatorLayout is doing absolutely zero here. You can remove it and the bug will go.
am...@google.com <am...@google.com> #9
Hi,
The development team has fixed the issue that you have reported and it will be available in a future version.
Thanks
The development team has fixed the issue that you have reported and it will be available in a future version.
Thanks
em...@gmail.com <em...@gmail.com> #11
[Comment deleted]
Description
Version used: 23.2.0
Theme used: Theme.AppCompat.Light.DarkActionBar (with actionBar="false", windowNoTitle="true")
Devices/Android versions reproduced on: AVD Nexus 5 Android 6.0
Using AppBarLayout in a CoordinatorLayout with fitsSystemWindow="true", the AppBarLayout incorrectly determines its target height for collapse.
Example layout:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="
xmlns:app="
xmlns:tools="
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:minHeight="0dp"
app:layout_scrollFlags="scroll|enterAlways|exitUntilCollapsed|snap"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/lorem_ipsum"/>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
See attached screenshots for initial appearance, and appearance after scrolling down past the point where the AppBarLayout stops collapsing further.
Problem did not occur in 23.1.1.