zoukankan      html  css  js  c++  java
  • 自定义ListView的滚动条

    使用ListView FastScroller,默认滑块和自定义滑块图片的样子:

    imageimage

    设置快速滚动属性很容易,只需在布局的xml文件里设置属性即可:

    <ListView android:id=”@+id/listView” android:layout_width=”fill_parent”
    android:layout_height=”fill_parent” android:fastScrollEnabled=”true”
    android:focusable=”true”
     />

    但是有时候会发现设置属性无效,滚动ListView并未出现滑块。原因是该属性生效有最小记录限制。当ListView记录能够在4屏以内显示(也就是说滚动4页)就不会出现滑块。可能是api设计者认为这么少的记录不需要快速滚动。(这个地方确实是没有,只有当数据量达到一定值后才会出现快速定位的标志。by:喜糖)

    我的依据是android源代码,见FastScroller的常量声明:

    // Minimum number of pages to justify showing a fast scroll thumb
    private static int MIN_PAGES = 4;

    以及:

    // Are there enough pages to require fast scroll? Recompute only if total count changes
    if (mItemCount != totalItemCount && visibleItemCount > 0) {
    mItemCount = totalItemCount;
    mLongList = mItemCount / visibleItemCount >= MIN_PAGES;
    }

    通篇查看了ListView及其超累AbsListView,都未找到自定义图片的设置接口。看来是没打算让开发者更改了。但是用户要求我们自定义这个图片。那只能用非常手段了。

    经过分析发现,该图片是ListView超类AbsListView的一个成员mFastScroller对象的成员 mThumbDrawable。这里mThumbDrawable是Drawable类型的。mFastScroller是FastScroller类 型,这个类型比较麻烦,类的声明没有modifier,也就是default(package),只能供包内的类调用。

    因此反射代码写的稍微麻烦一些:  (这段代码好使,经过测试了。效果不错。by 喜糖)

    try {
    Field f = AbsListView.class.getDeclaredField(“mFastScroller”);
    f.setAccessible(true);
    Object o=f.get(listView);
    f=f.getType().getDeclaredField(“mThumbDrawable”);
    f.setAccessible(true);
    Drawable drawable=(Drawable) f.get(o);
    drawable=getResources().getDrawable(R.drawable.icon);
    f.set(o,drawable);
    Toast.makeText(this, f.getType().getName(), 1000).show();
    } catch (Exception e) {
    throw new RuntimeException(e);
    }

    这样就可以改变默认的滑块图片了。

    源代码见:http://easymorse.googlecode.com/svn/tags/ListViewCustomerFastScroller-0.1/

  • 相关阅读:
    innotop 安装和使用
    Waiting for table flush 的原因及处理方法
    input 在 chrome 下 , 自动填充后,默认样式清除
    小米WiFi放大器出现黄灯闪烁,无法使用处理方法
    Error writing file '/tmp/MLLGyECY' (Errcode: 28
    org.apache.activemq.transport.InactivityIOException: Channel was inactive for too (>30000) long: tcp://192.168.120.22:61616
    Apache-Tomcat-Ajp漏洞(CVE-2020-1938)漏洞复现 和处理
    Spring boot CommandLineRunner接口使用例子
    interface21
    interface21
  • 原文地址:https://www.cnblogs.com/xitang/p/2176035.html
Copyright © 2011-2022 走看看