I have a ListView which gets populated with RelativeLayouts. The content of these RelativeLayouts can change and thus change their height respectively. On each RelativeLayou
If your RelativeLayout is inside a ScrollView, then on the ScrollView you need to add the fillViewPort param and set it to true
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
If you know the exact height you want to set, you can set Height or MinHeight for this component (View). In your case, you can set with: android:minHeight="76dp", or you can set it programmatically using LayoutParams. Hope it helps!