I am using this Volley example
It works perfect, but when I change the response of data to 150+ records from server it takes a long time to load.
So I want to load small amount of data 5-10 record then another 5-10 records.
How can I do this with Volley?
You could use AsyncTask to do something like this:
Then, assuming you are trying to connect to an online database, for example a MySQL database, you could easily implement a PHP interface to your database which returns only the amount of records you want (for example 10) and call the DatabaseTask whenever you need the records. Alternatively, you could do a separate Thread working on a timer which sends query whenever the timer fires.