首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

2014.01.13(二) ——— android listview fastScrollEnabled

2014-01-17 
2014.01.13(2) ——— android listview fastScrollEnabled2014.01.13(2) ——— android listview fastScrollEn

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

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



一直以为是自定义,原来listview里面已经有了



就可以实现这个功能了,当然必须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); }


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




热点排行