I am facing performance issue while adding multiple RecyclerView inside NestedScrollView. I am displaying two horizontal on top and vertical RecyclerView on bottom.
I have Added below line
recyclerView.setNestedScrollingEnabled(false);
This is showing all list properly but real question is I am facing performance issue.
All three RecyclerView is showing after ~5 sec of all response come. This is also blocking UI as it busy for RecyclerView to appear.
XML
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/llTabs"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.turacomobile.gb.utils.CustomSFUIMediumTextView
android:id="@+id/tvMyBrands"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="My Streamz (Brands)"
android:textColor="@color/black" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rvMyBrands"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="@dimen/dimen_5dp"
android:paddingRight="@dimen/dimen_5dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<com.turacomobile.gb.utils.CustomSFUIMediumTextView
android:id="@+id/tvRecommendedBrands"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Recommended Streamz (Brands)"
android:textAppearance="@style/TabLayoutTextStyleSearch"
android:textColor="@color/black" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rvRecommendedBrands"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="@dimen/dimen_5dp"
android:paddingRight="@dimen/dimen_5dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<com.turacomobile.gb.utils.CustomSFUIMediumTextView
android:id="@+id/tvSearchMyStreamz"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="Food from My Streamz Brands"
android:textColor="@color/black" />
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
JAVA
rvSearchStreamz = findViewById(R.id.my_recycler_view);
rvMyBrands = findViewById(R.id.rvMyBrands);
rvRecommendedBrands = findViewById(R.id.rvRecommendedBrands);
LinearLayoutManager llm = new LinearLayoutManager(this);
llm.setOrientation(LinearLayoutManager.VERTICAL);
rvSearchStreamz.setLayoutManager(llm);
rvSearchStreamz.setNestedScrollingEnabled(false);
rvSearchStreamz.setHasFixedSize(false);
LinearLayoutManager llmMy = new LinearLayoutManager(this);
llmMy.setOrientation(LinearLayoutManager.HORIZONTAL);
rvMyBrands.setLayoutManager(llmMy);
rvMyBrands.setNestedScrollingEnabled(false);
rvMyBrands.setHasFixedSize(false);
LinearLayoutManager llmRecommended = new LinearLayoutManager(this);
llmRecommended.setOrientation(LinearLayoutManager.HORIZONTAL);
rvRecommendedBrands.setLayoutManager(llmRecommended);
rvRecommendedBrands.setNestedScrollingEnabled(false);
rvRecommendedBrands.setHasFixedSize(false);