在滚动列表视图时,当到达列表末尾时,我正在获取其他批次的数据,在获取完成后,我希望在滚动之前关注列表视图的最后一项。setSelection()
不管用。谁能建议我更好的选择。
问问题
1615 次
1 回答
0
尝试这个 :
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
LayoutInflater inflator = mContext.getLayoutInflater();
view = inflator.inflate(android.R.layout.your_item_layout, null);
}
//your specific code here
if (position == mList.size()-1){
//fetch other batch of data
}
return view;
}
由于预加载,getView 方法将在屏幕上可见之前被调用。但我认为,这就是你要找的。
于 2013-01-02T13:41:44.957 回答