Another trick I use to get the best performance possible on a mobile device is to turn off collision check check box on any sprites that don't require it. This eliminates a lot of checks that would be required otherwise. By default when you create a sprite it's collision check property is on.
This also means that if something is off screen you can disable collision checks and then enable them when the item is visible.
In my games this helps a lot to eliminate unnecessary collision checks.