Skip to content Skip to sidebar Skip to footer

Coordinate Layout Leaves Empty Space At The Bottom

I have used CoordinatorLayout in my xml file along with collapsing toolbar layout and nested scroll view. Everything is set. It is showing beautiful animation of toolbar when neste

Solution 1:

Try this,

   <android.support.v7.widget.CardView
        android:id="@+id/thirdCard"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="invisible"
        android:layout_marginLeft="@dimen/card_margin"
        android:layout_marginRight="@dimen/card_margin">

Post a Comment for "Coordinate Layout Leaves Empty Space At The Bottom"