Fixed
Status Update
Comments
ad...@android.com <ad...@android.com> #2
Fixed in upcoming release. Thanks for the report!
tr...@gmail.com <tr...@gmail.com> #3
it's a stupid bug!
je...@googlemail.com <je...@googlemail.com> #4
Android is full of those bugs :(
It's a pity :(
It's a pity :(
do...@gmail.com <do...@gmail.com> #5
stupid bug,thanks for your report
[Deleted User] <[Deleted User]> #6
how about controlling the scrollbarTrackHorizontal's width?
ea...@gmail.com <ea...@gmail.com> #7
ummm. not sure if im just stupid, but in 5.0.1 im having the same problem, only for ScrollView, Herizontal works great.. can't set the scrollbar size
iv...@gmail.com <iv...@gmail.com> #8
Android 5.1.1 - scrollbarSize XML property still ignored.
ag...@gmail.com <ag...@gmail.com> #9
[Comment deleted]
Description
<ScrollView
android:layout_width="wrap_content" android:layout_height="fill_parent"
android:fadeScrollbars="false"
android:scrollbarThumbVertical="@drawable/thumb01"
android:scrollbarSize="20px"
>
For your information, drawable/thumb01.xml is the following for example.
<shape xmlns:android="
<solid android:color="#FF0000"/>
<corners android:radius="4px"/>
</shape>
But it works well when android:scrollbarThumbHorizontal attribute is added in the same ScrollView tag.
For example below.
<ScrollView
android:layout_width="wrap_content" android:layout_height="fill_parent"
android:fadeScrollbars="false"
android:scrollbarThumbVertical="@drawable/thumb01"
android:scrollbarThumbHorizontal="@drawable/thumb01"
android:scrollbarSize="20px"
>
Of course, android:scrollbarThumbHorizontal means nothing in this case.
I believe that this problem is caused by View class of android.view package.
Hereinafter, the target version is Android 2.3 (Gingerbread).
The problem is in source code of View.java, several lines from 5940 line.
The "size" variable is the size of "horizontal" scrollbar of 5940 line.
But, this variable seems to be used as the size of "vertical" scrollbar at 5972 and 5974 lines.
It is necessary to get the size of vertical scrollbar before 5972 line, is it ?