How does the android load the res(string)?
We all know that: the string resources are in the values folder.
There're some kinds folders.
Such as:
values
values-es
values-mcc460
When the user change the language to Spanish
, then the system would load the resource from the folder values-es.
And when the user insert a sim card(mcc=460), then the system would load the resource from the folder values-mcc460.
I wanna know how the system exactly load the resource? How does the android implement the resource loading mechanism in the framework?
I'm not familiar with c/c++.
Help!