My question concerns the android development. I would like to know if the method context.getSystemService(String s) uses reflection. There
are many static String constants defined within the Context class. I’m not sure how the mechanism behind this method works. Thats why I’m asking.
My question concerns the android development. I would like to know if the method
Share
Looking at the code here, it seems like it just checks what the value of
sis, usingequals()and returns an appropriate value.So, no Reflection there.