RecyclerView dentro de NestedScrollView onBindViewHolder chamando todos os tamanhos de getItemCount

Quando eu colocoRecyclerView dentroNestedScrollView entãoonBindViewHolder está chamando por todas as linhas como dizer que eu tenho lista que tem tamanho de 30, em seguidaonBindViewHolder é chamado para todas as 30 linhas de uma vez, mesmo sem rolar

 RecyclerView list;
    LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
        list.setLayoutManager(layoutManager);
        layoutManager.setAutoMeasureEnabled(true);
        list.setNestedScrollingEnabled(false);
        list.addItemDecoration(new VerticalSpaceItemDecoration(5));
        list.setAdapter(adapter);

meu xml é

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    android:scrollbars="none"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">
 <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/grey">
    <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_views"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/info"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:textAlignment="center"

            android:visibility="visible"
           />

mas se eu removerNestedScrollView está funcionando corretamente.

questionAnswers(4)

yourAnswerToTheQuestion