我正在使用ScrollView,我想設置ScrollBar大小,但是我嘗試的所有內容都失敗了。 我嘗試使用屬性android:scrollbarSize,風格與主題,但沒有。滾動條的大小始終相同。 有什麼建議嗎?由於Android ScrollView滾動條大小
我試着用這樣的:
<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">
,但滾動條的寬度並沒有改變。
所以我創建了一個樣式文件是這樣的:
<resources>
<style name="ShowAllScrollBar1">
<item name="android:scrollbarSize">20px</item>
</style>
</resources>
,然後設置樣式AndroidManifest。
你能不能給你試了一下的例子嗎? – 2010-09-17 17:11:07