i’ve done an android app that retrieves data from the interent , format it and display it in a customized rows . However the performance is slow. So , is there any general guidelines or checklist to boost up the performance on android app.
Share
Why not have a read through the android developer documents. There are lots of handy tips and tricks for optimizing your app.
There is a general guide about boosting performance here
Seeing as you are retrieving data from the internet, it is important to run background threads to retrieve data. This will stop your interface from “hanging” and becoming unresponsive while the data is being received. Two useful articles here and here
It also may be a good idea to take steps to optimize your user interface a bit. article here