I have a View like below
<ScrollView android:id="@+id/appsgridscroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:fadeScrollbars="true"
android:scrollbarFadeDuration="10000"
android:layout_below="@id/applisttitlebar">
<LinearLayout android:id="@+id/appsgridlayout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</ScrollView>
And I am dynamically adding GridViews to the Linearlayout.
I am running with below issue.
The GridView does not stretch to fill its content (As you see the image show only first row when it have more items in GridView)
The GridView does not scroll (it show the scroll bars - see image) on Phone (Android 4.1.2) but scroll on Nexus7 (7inch tablet)
Any ideas?? Please suggest.