What are the optimization options for the Android user interface?

I have an application with a lot of graphic elements, I tried to eliminate the layout complexity using RelativeLayout and wonder what else can be done to speed up the user interface based on a standard layout system with many graphic elements?

+6
source share
2 answers

You can check out the Romain Guy blog http://www.curious-creature.org/category/android/ , he writes often on the topic of performance. Take a look at this article especially.

+2
source

The Android Developers site has a guide for UI design and Performace:

Android UI Performance

Good luck

+1
source

All Articles