When my ListView activity loads it creates the Adapter which fills the screen as it should do. Is there an event or way to find out when the Adapter has finished getting enough data to fill the screen.
I want to show a spinner the first time the Activity loads and have it go away once the screen has its first load of data from the Adapter.
Well as your question suggests, i guess an adapter can only take time if you download data to be shown, If that is the case then you can always use background threads, i.e. extending the
AsyncTaskAnd starting a progressbar (determinate or indeterminate) and removing it after your task is complete…Hope this helps!