标签:android style blog http color os strong io
定义的getView执行多次的ListView布局:
执行多次原因是因为每显示一个VIew,它都去测量view的高度,执行measure方法,导致getView执行多次。
正确的布局:
把width和height都设置成fill_parent,如果ListView有父布局,也把父布局的width和height设置成fill_parent,这样就成功的解决了自定义适配器getView 执行多次的问题。
下面这3行可以解决ListView滑动变黑的问题:
希望可以帮助到大家解决问题!
android-继承BaseAdapter--自定义适配器,getView执行多次的解决方法,布布扣,bubuko.com
android-继承BaseAdapter--自定义适配器,getView执行多次的解决方法
标签:android style blog http color os strong io
原文地址:http://www.cnblogs.com/Free-Thinker/p/3883619.html