我在listview中设计一个自定义滚动条,看起来像股票people.apk应用程序的滚动条,但我无法得到它..请帮助我
scrollbar_vertical_thumb.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="0"
android:endColor="#FF6600"
android:startColor="#FF6600" />
<corners android:bottomRightRadius="3dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="3dp"
android:topRightRadius="7dp"/>
<padding android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp"/>
</shape>
类似