我有如下视图
<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>
我正在动态地将 GridViews 添加到 Linearlayout。
我正在运行以下问题。
GridView 不会拉伸以填充其内容(如您所见,当 GridView 中有更多项目时,该图像仅显示第一行)
GridView 在电话(Android 4.1.2)上不滚动(它显示滚动条 - 见图片),但在 Nexus7(7 英寸平板电脑)上滚动
有任何想法吗??请建议。