Android-CityList icon indicating copy to clipboard operation
Android-CityList copied to clipboard

城市列表选择,类似美团城市选择

Results 1 Android-CityList issues
Sort by recently updated
recently updated
newest added

`hotCity.setOnItemClickListener(new AdapterView.OnItemClickListener() { ``` @Override public void onItemClick(AdapterView parent, View view, int position, long id) { City bean = (City) parent.getAdapter().getItem(position); Toast.makeText(context, bean.getName(), Toast.LENGTH_SHORT).show(); } });` ``` 这个onItemClick无效