android 自定义滚动条图标
Posted zhaoqingyue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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" />
以上是关于android 自定义滚动条图标的主要内容,如果未能解决你的问题,请参考以下文章