5,380 questions
I resolved by using 2 relative layout one relative as parent scrollview as child and the other relative
layout as child of the scroll view
like this
<RelativeLayout
android:layout_width="3dp"
android:layout_height="wrap_content"
>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>
</ScrollView>
</RelativeLayout>