I'm having weird issues with ScrollView that contains a relativeLayout with topMargin
<ScrollView android:id="@+id/scroll_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:descendantFocusability="beforeDescendants" android:fillViewport="true" android:focusableInTouchMode="true"> <RelativeLayout android:id="@+id/cp_editor_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/white" android:layout_marginTop="270dp" > ... This code example does not work. the scrolling stops after around 20px. If i'm removing the margin_top attribute then the scrolling works as expected.
Thanks for your help