Android HorizontalScrollView doesn't scroll

cowcow

New Member
I have the following \[code\]HorizontalScrollView\[/code\] with 2 custom views.For some reason it doesn't scroll\[code\]<com.name.CustomObjects.HorizontalLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="10dp" android:fillViewport="true" android:scrollbars="horizontal" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <com.name.Views.AView android:id="@+id/aView" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <com.name.Views.BView android:id="@+id/bView" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout></com.name.CustomObjects.HorizontalLayout>\[/code\]
 
Back
Top