我正在使用scrollview并尝试为scorllview设置缩略图。 由于缩略图的大小很小,因此它没有正确显示。 我试图设置滚动条的大小,但结果仍然相同。
答案 0 :(得分:2)
当我说“没有正确显示”时,我的意思是说滚动视图大小属性(即android:scrollbarSize =“15px”)没有生效,它使用一些默认的vaule因此缩略图正在缩小。
无论如何我已经找到了它的灵魂。在scrollview中有一个错误。 android:scrollbarSize属性只有在我们同时使用时才会生效 (android:scrollbarThumbVertical =“@ drawable / thumb01”和android:scrollbarThumbHorizontal =“@ drawable / thumb01”)属性否则android:scrollbarSize属性值不生效。
有关详细信息,请参阅以下网址 http://code.google.com/p/android/issues/detail?id=14317
抱歉这个含糊不清的问题。