Gridview滚动宽度

时间:2017-11-14 12:31:27

标签: android gridview

我有这个Gridview

<GridView
    android:id="@+id/gridview_example"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="20dp"
    android:layout_marginLeft="45dp"
    android:layout_marginRight="45dp"
    android:layout_marginTop="35dp"
    android:layout_centerHorizontal="true"
    android:layout_centerInParent="true"
    android:numColumns="3"
    android:horizontalSpacing="10dp"
    android:verticalSpacing="10dp"
    android:fadeScrollbars="false"
    android:scrollbarStyle="outsideInset"
    android:scrollbarSize="30dp"
    android:smoothScrollbar="true">
</GridView>

我试图增加滚动宽度。我尝试使用scrollbarSize,但没有任何变化。有没有办法增加滚动条的宽度而不自定义它?

我是Android开发的新手,所以请保持温和:)

更新:测试了这个possible solution并在scrollview

中添加了我的gridview
<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="20dp"
    android:layout_marginLeft="45dp"
    android:layout_marginRight="45dp"
    android:layout_marginTop="35dp"
    android:layout_centerHorizontal="true"
    android:layout_centerInParent="true"
    android:layout_above="@+id/bottomMenu"
    android:scrollbarSize="50dip">
    <GridView
        android:id="@+id/gridview_holes"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:numColumns="3"
        android:horizontalSpacing="10dp"
        android:verticalSpacing="10dp">
    </GridView>
</ScrollView>

但是gridview要小得多,我只看到gridview的薄卷轴。

2 个答案:

答案 0 :(得分:0)

请试试这个

  

机器人:scrollbarAlwaysDrawVerticalTrack =真

     

机器人:滚动条=垂直

答案 1 :(得分:0)

  

使用Scrollview滚动子视图

<强> enter image description here