> Hi, > > I have a layout xml file which embeds a ListView: > <ScrollView android:layout_width="fill_parent" > android:layout_height="0dip" android:layout_weight="1" > android:scrollbarStyle="outsideOverlay" > android:fillViewport="true"> > <LinearLayout android:orientation="vertical" > android:layout_width="fill_parent" > android:layout_height="wrap_content"> > <!-- some text views, buttons, image views here ---> > </LinearLayout> > <ListView > android:layout_width="fill_parent" > android:layout_height="wrap_content" /> > </ScrollView>
You cannot successfully put a ListView inside of a ScrollView. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- 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

