`

2014.01.13(2) ——— android listview fastScrollEnabled

 
阅读更多
2014.01.13(2) ——— android listview fastScrollEnabled
参考:http://blog.csdn.net/java2009cgh/article/details/7301197

使用app的时候,经常见到如下所示的情况:



一直以为是自定义,原来listview里面已经有了
android:fastScrollEnabled="true" 
或
mLst.setFastScrollEnabled(true);


就可以实现这个功能了,当然必须listview的item个数在4屏内显示不全的时候,才会出现右边的图片


自定义图片的话,需要使用反射:
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); 
}


这样就可以用你自己的图片来替换默认的了




  • 大小: 16.2 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics