Android ScrollView scrollbarSize

前端之家收集整理的这篇文章主要介绍了Android ScrollView scrollbarSize前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用ScrollView,而我想设置ScrollBar大小,但我尝试的一切都失败了.
我尝试使用属性 android:scrollbarSize,与样式,主题,但没有.滚动条的大小总是相同的.
有什么建议么?谢谢

我试过这样:

<ScrollView 
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:layout_marginTop="10px"
android:layout_marginBottom="15px"
android:scrollbarSize="20px"
android:scrollbarTrackVertical="@drawable/scrollbar_reflection"
android:scrollbarThumbVertical="@drawable/scrollbar_state2">

但滚动条的宽度不会改变.

所以我创建了这样一个stye文件

<resources>
   <style name="ShowAllScrollBar1">
     <item name="android:scrollbarSize">20px</item>           
 </style>
</resources>

然后在AndroidManifest中设置样式.

解决方法

我实际上也在努力解决这个问题.不幸的是,似乎问题实际上是在Android源代码中,直到下一个Android版本才会被修复.经过一番搜索,我在这里找到这个信息: http://code.google.com/p/android/issues/detail?id=14317.
原文链接:https://www.f2er.com/android/313486.html

猜你在找的Android相关文章