EasySideBar icon indicating copy to clipboard operation
EasySideBar copied to clipboard

一款按字母排序库,已封装好城市数据,风格仿美团,可定制化强。

Results 3 EasySideBar issues
Sort by recently updated
recently updated
newest added

//ListView的点击事件 sortListView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView parent, View view, int position, long id) { String city = ((CitySortModel) adapter.getItem(position - 2)).getName(); SentDataForResult(city); } }); position - 1改成position -...