I am developing android application. Now I have to create the app of newspaper. So on home page I have to display top stories with the images and the text. Now my problem is, there should be so many top stories so I have used horizontal scroll bar to see other stories. Now my idea is to load the images and the text when the user scrolls left or right. Is it possible to do or I have to load all the data on create of the activity. Any help or suggestion is appreciated.
Share
If what you are asking about is Lazy-Loading, then you need to use
AsyncTask, as it’s the easiest method to implement it.To create an horizontal ListView read here