1

我在android中做了一个简单的活动,我想改变滚动条的宽度。我的滚动视图代码如下:

<ScrollView
        android:id="@+id/scrProGhp"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/ivProGraph"
        android:layout_below="@+id/text1"
        android:layout_marginTop="5dp"
        android:fadeScrollbars="false"
        android:scrollbarSize="50dp"
        android:fillViewport="true" 
         android:fastScrollEnabled="true">

请帮帮我

4

2 回答 2

1

试试android:scrollbarSize="5dip"

              <ListView
                android:id="@+id/mFriendsListView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:cacheColorHint="@android:color/transparent"
                android:fastScrollAlwaysVisible="false"
                android:fastScrollEnabled="false"
                android:focusable="false"
                android:footerDividersEnabled="false"
                android:scrollbarSize="5dip"
                android:scrollbarStyle="outsideOverlay"
                android:scrollbarThumbVertical="@color/orange"
                android:scrollbars="vertical"
                android:scrollingCache="false" />
于 2014-07-15T09:44:44.560 回答
0

诀窍是为滚动条可绘制对象设置透明(或不透明)笔划,以防您希望滚动条更小(或更大)

于 2013-11-30T17:06:43.947 回答