RecyclerView dentro de NestedScrollView onBindViewHolder llamando a todos los tamaños getItemCount

Cuando pongoRecyclerView dentroNestedScrollView entoncesonBindViewHolder está llamando a todas las filas como decir que tengo una lista que tiene un tamaño de 30 y luegoonBindViewHolder se llama para las 30 filas a la vez, incluso sin desplazamiento

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

mi xml es

<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"
           />

pero si eliminoNestedScrollView Funciona correctamente.

Respuestas a la pregunta(4)

Su respuesta a la pregunta