我想在gridview中添加滚动条,如何在网格视图中添加滚动条?
答案 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>