I get this warning from spam in my console. The only information I can find is most people get it when they have a quick scroll included in the listview. I do not use lists. He says that he is incorrectly called CollapsingToolbarLayout, AppCompatTextView, a toolbar, and sometimes AppBarLayout. This happens whenever I quickly โdropโ my nested scroll up and down to collapse and expand the toolbar.
Logs:
06-30 22:18:42.622 19090-19090/? I/art: Not late-enabling -Xcheck:jni (already on) 06-30 22:18:43.153 19090-19090/joebruckner.lastpick.debug D/MovieShuffleActivity: false, true, false 06-30 22:18:43.205 19090-19126/joebruckner.lastpick.debug D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true [ 06-30 22:18:43.267 19090:19126 D/ ] HostConnection::get() New Host Connection established 0xea95fdb0, tid 19126 06-30 22:18:43.287 19090-19126/joebruckner.lastpick.debug I/OpenGLRenderer: Initialized EGL, version 1.4 06-30 22:18:43.806 19090-19090/joebruckner.lastpick.debug D/MovieShuffleActivity: false, true, true 06-30 22:28:49.264 19090-19090/joebruckner.lastpick.debug W/View: requestLayout() improperly called by android.support.design.widget.CollapsingToolbarLayout{5041bd9 V.ED..... ......ID 0,0-1080,525
Xml:
<?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" android:id="@+id/root" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/appBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true"> <android.support.design.widget.CollapsingToolbarLayout android:id="@+id/collapsingToolbar" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_scrollFlags="scroll|exitUntilCollapsed" app:contentScrim="?attr/colorPrimary" app:titleEnabled="false" android:fitsSystemWindows="true"> <ImageView android:id="@+id/backdrop" android:layout_width="match_parent" android:layout_height="200dp" android:contentDescription="@string/backdrop" android:scaleType="fitXY" /> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:layout_collapseMode="pin"/> </android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.AppBarLayout> <FrameLayout android:id="@+id/frame" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/appBar" app:layout_behavior="@string/scrolling_view" app:behavior_overlapTop="80dp" /> <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="16dp" android:src="@drawable/ic_dice_three_48dp" app:layout_anchor="@+id/frame" app:layout_anchorGravity="bottom|end" /> </android.support.design.widget.CoordinatorLayout>
source share