Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我的视图是否在我的列表视图中可见我的适配器中是否有一个监听器来知道当前视图是否可见?
我不想在我的列表视图中加载太多可绘制对象
谢谢
这正是列表适配器为您所做的。getView()只为可见视图调用。当视图不再可见时,它会被回收并getView()作为参数传递给convertView。对于您的可绘制对象,您应该考虑使用 LRU 缓存。
getView()
convertView