notifyDataSetChanged() on my adapter does not update the listview, why?
问题 I have a activity that extends listactivity, extended in this class i have a class that extends baseadapter. now in my listactivity i have this onCreate /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setListAdapter(new BuildingAdapter(this)); final ProgressDialog loading = new ProgressDialog(this); loading.setProgressStyle(ProgressDialog.STYLE_SPINNER); loading.setTitle("Laddar"); loading