DEV Community

mk
mk

Posted on

Answer: How does the mapping between android resources and resources ID work?

At build time, the aapt tool collects all of the resources you have defined (though separate files or explicit definitions in files) and assigns resource IDs to them.

A resource ID is a 32 bit number of the form: PPTTNNNN. PP is the package the resource is for; TT is…

Top comments (0)