Skip to content

Instantly share code, notes, and snippets.

@easternHong
Created October 16, 2014 15:56
Show Gist options
  • Save easternHong/bdaf6db9aec396f6f6b2 to your computer and use it in GitHub Desktop.
Save easternHong/bdaf6db9aec396f6f6b2 to your computer and use it in GitHub Desktop.
update_listview_item
public void updateItemView(final int index, Object o) {
int visibleposition = mlist.getFirstVisiblePosition();
View view = mlist.getChildAt(index - visibleposition);
TextView tView = (TextView) view.findViewById(R.id.item_define_word);
tView.setText((String) o);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment