Performance issues on Android? - will pay

  • Replies:1
Henry Jackson
  • Forum posts: 1

May 18, 2012, 4:08:57 AM via Website

Hi - I am having some loading and speed issues on my android app, regardless of how big or small the traffic is.

Does anyone have experience in performance optimization on android?

I happy to pay for a few hours or more of help on this?

Thanks!

Henry

— modified on May 18, 2012, 4:09:19 AM

Reply
Jeremiah
  • Forum posts: 775

May 18, 2012, 6:19:46 AM via Website

What do you mean by how big or small the traffic is? Are you loading stuff from the internet when your app starts? The big mistake here is not to load stuff in your ui thread as this will cause application not responding reports and users will force close your app. Use an a-sync task to load the resources outside of your ui thread: http://androidcookbook.com/Recipe.seam?recipeId=2260&title=Using%20AsyncTask%20to%20do%20background%20processing

Reply