tags:

views:

818

answers:

1

How much RAM is available for use by each app?

I read somewhere that each app could only use a max of 16 mb, but the total system memory is much higher.

+3  A: 

Each application is limited to 16MB of Java heap space, at least for devices with "normal" class screens. That limit has apparently been bumped to 24MB for devices with "large" class screens -- in part because of larger bitmaps such screens might manipulate, and probably in a trade-off for the minimum amount of device RAM such devices will need to have.

CommonsWare