Skip to content

1.4.1

Latest
Compare
Choose a tag to compare
@youlookwhat youlookwhat released this 07 Jun 02:59
· 1 commit to master since this release

ListView的BaseListAdapter 优化和新增 setNewData()

public void setNewData(List<T> data) {
    this.mData = data == null ? new ArrayList<T>() : data;
    notifyDataSetChanged();
}