I need to see implementation of getText(int resId) method. This method is defined as final in abstract class Context.java and I’ve searched implementation in ContextWrapper.java and ContextThemeWrapper.java but I could’t find any implementation. Can somebody post a ling to this method implementation? I’ve looked on netmite.com for classes implementations. Thanks
I need to see implementation of getText(int resId) method. This method is defined as
Share
It is implementation of
getText()inContext.java. Class is abstract but it has implementation of this method.Implementation of
Resources.getText():Implementation of
AssetManager.getResourceText():Upd: As mentioned by @zapl
loadResourceValue()is native and can be found inandroid_util_AssetManager.cpp.