Skip to content Skip to sidebar Skip to footer

Textview Below Nestedscrollview With Height Wrap_content Not Visible

Below is the layout file of the bottom sheet. I have a TextView below the nested scroll view. When the content is large, the TextView below the NestedScrollView is not visible. If

Solution 1:

Try using android:layout_weight on your NestedScrollView.

In your case, replace the header of your NestedScrollView with:

<android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"

Hope that helps =]

Post a Comment for "Textview Below Nestedscrollview With Height Wrap_content Not Visible"