当列表项不在屏幕上时,我在获取列表项的视图时遇到问题。
首先我平滑滚动到它
//locationsList is a listview
locationsList.post(new Runnable() {
@Override
public void run() {
locationsList.smoothScrollToPosition(k);
}
});
然后我想做
View listItem = locationsList.getChildAt(k);
listItem.setBackgroundColor(getResources().getColor(R.color.highlight));
滚动完成后如何调用它?