I can access the TextView instance, get it\'s resource ID and get it\'s resource name via getResources().getResourceEntryName(), but I can\'t seem to find a way to
You can't. A TextView doesn't store the id of the String resources if you call setText(int resid). All this overloaded method does is get the String from the resources and call the setText(CharSequence text) method.