Trying to get two vertical views, one that scrolls...
# android
d
Trying to get two vertical views, one that scrolls and the other one that doesn’t scroll:
Copy code
<RelativeLayout>
  <ScrollView android:id="@+id/left_view">
  </ScrollView>
  <LinearLayout android:layout_toRightOf="@id/left_view>
  </LinearLayout>
</RelativeLayout>
The issue I am having is that the LinearLayout scrolls with the ScrollView and I only want the ScrollView scrolling…
stackoverflow 6
google 4