I'm just a beginner in Android application development. And I came to this creating ListView
and manipulating content for the ListView
. We all know we usually use Adapter
as a data and View
provider for the ListView
. Have one doubt is this really falls under the normal Adapter Design Pattern
. One more doubt I'm fetching the content for my list from a third party API. In this I'm using two types of Views one is to show the loading view while the content is getting loaded from the API and the other is the normal View
(ListRow). Is it good way of doing it ? Any help or explanation would be largely appreciated.
Thank You