android 自定义滚动条图标

【android 自定义滚动条图标】幽映每白日,清辉照衣裳。这篇文章主要讲述android 自定义滚动条图标相关的知识,希望能为你提供帮助。
1. scrollbar_vertical_thumb.xml

< ?xml version="1.0" encoding="utf-8"?> < shape xmlns:android="http://schemas.android.com/apk/res/android" > < !-- 填充 --> < solid android:color="#37393d" /> < !-- 圆角 --> < corners android:radius="5dp" />

使用方式:
< ListView android:id="@+id/id_msg_listview" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="@null" android:listSelector="@android:color/transparent" android:scrollbarSize="@dimen/scrollbarSize" android:scrollbarStyle="outsideOverlay" android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb" android:scrollbars="vertical" />

 

    推荐阅读