OK, as usually after I post I end up finding the answer myself. :-) This nugget got me close
"Your vertical scroll view can only have one child, which means you need to envelop your gallery view and the linear view "chart" with another linerLayout which then should be enveloped with a scrollView." For me that translated into doing the following in each of the NON ListView tab layouts <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="center_horizontal" android:padding="1px"> <ScrollView android:id="@+id/ScrollViewAppInfo" android:layout_width="fill_parent" android:layout_height="wrap_content" > <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="left" android:padding="1px"> <TextView android:id="@+id/AppInfoDisplay" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="App Info" /> </LinearLayout> </ScrollView> </LinearLayout> -- 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

