0

这是我到目前为止所拥有的:

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/linearLayout1"
    android:layout_marginBottom="100dip" >
</ScrollView>

在滚动视图中,我想要一个图标网格,可能还有其他一些视图,我计划通过 java 代码填充它们。

我已经查看了 GridLayout 和 GridView 并且我正在努力确定哪个更适合,我的第一直觉是 GridLayout 但有些人认为 GridView 更适合我的目的。

4

1 回答 1

1

怎么加

<Scrollable ......>
<GridLayout.....>
  your components

</GridLayout>
</Scrollable>

无论内部布局如何,这将使您的页面可滚动

于 2013-04-27T02:50:11.947 回答