When scrolling through elements that are in Nested Scroll View, the error E / ANDR-PERF constantly appears in the logs: IPerf :: tryGetService failed! What is it and how to solve it?
Разметка activity: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/activity_main" android:background="@drawable/repeat_background" tools:context=".MainActivity" > <android.support.v4.widget.NestedScrollView android:id="@+id/layout_for_everyday_events" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:orientation="vertical" android:layout_centerHorizontal="true"> </android.support.v4.widget.NestedScrollView> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:id="@+id/coordinator_layout" tools:context=".MainActivity" > <include layout="@layout/coordinator_layout"/> <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_anchor="@+id/layout_for_recycler_view" app:layout_anchorGravity="top|end" app:behavior_autoHide="false" android:layout_marginEnd="60dp" app:srcCompat="@android:drawable/ic_menu_edit" app:backgroundTint="#b8be0e" /> </android.support.design.widget.CoordinatorLayout> 