在Android中设置滚动条的大小和位置?

时间:2013-02-04 08:29:17

标签: android scrollbar

我正在使用ListView,我必须在其中设置滚动条的大小。 滚动条的位置也是屏幕的左侧。

我使用了自定义滚动条,代码为:

 <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <gradient
        android:angle="45"
        android:endColor="#33b8e9"
        android:startColor="#33b8e9" />

    <corners android:radius="1dp" />
    <size android:width="2dip"
        android:height="5dip"/>
</shape>

但仍然得到一个巨大的长度滚动条,如图所示: enter image description here

但我需要像这张图片一样的滚动条。 enter image description here

0 个答案:

没有答案