如何在网格视图中添加滚动条?

时间:2010-09-08 19:15:08

标签: android

我想在gridview中添加滚动条,如何在网格视图中添加滚动条?

2 个答案:

答案 0 :(得分:4)

  

我想在gridview中添加滚动条,如何在网格视图中添加滚动条?

GridView已有滚动条,因此您无需执行任何操作。在Android 2.2中,只有在用户主动滑动网格时,该栏才会默认显示。您可以使用一系列attributes defined on the View class来定制滚动条的行为。

答案 1 :(得分:-1)

在滚动视图中包装网格视图。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/scrollview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#ffffff"
            android:paddingTop="10dip"
            android:paddingLeft="5dip"
            android:layout_weight="1"
        >
</ScrollView>