Hi, I have a wide ListView that I need to scroll both vertically (for new items) and horizontal (to display entire row). Is it a good idea to do something like the code below? What are other options if any? Thanks beforehand.
<HorizontalScrollView > android:id="@+id/scrollview" > android:layout_width="fill_parent" > android:layout_height="fill_parent" > android:scrollbars="none"> > > <LinearLayout android:id="@+id/layout" > android:layout_width="wrap_content" > android:layout_height="fill_parent" > android:orientation="horizontal"> > > <ListView android:id="@+id/list" > android:layout_width="fill_parent" > android:layout_height="fill_parent" /> > </LinearLayout> > </HorizontalScrollView> > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

