Get an android resource drawable by ResourceName. Returns Null if the Drawable is not found.
GetAndroidDrawableNamesAsList
Get a List of all available android Drawable resource names.
GetAndroidDrawables (ResourceNamesAsMap) AsMap
Get one or more android resource Drawables. Pass a Map to this method where each Map key is an android Drawable resource name. The method will return the same Map object where the Map values are the android resource Drawables defined by the Map keys. If an android resource Drawable is not found the Map value will not be changed.
GetAndroidString (ResourceNameAsString) AsString
Get an android resource string by ResourceName. Returns Null if the String is not found.
GetAndroidStringNamesAsList
Get a List of all available android String resource names.
GetAndroidStrings (ResourceNamesAsMap) AsMap
Get one or more android resource Strings. Pass a Map to this method where each Map key is an android String resource name. The method will return the same Map object where the Map values are the android resource Strings defined by the Map keys. If an android String is not found the Map value will not be changed.
Get one or more application resource Drawables. Pass a Map to this method where each Map key is an application Drawable resource name. The method will return the same Map object where the Map values are the application resource Drawables defined by the Map keys. If an application resource Drawable is not found the Map value will not be changed.
Returns a List of Strings which are the application resource names for the ResourceType. ResourceType must be one of the android R class nested class names. ResourceType values such as color, drawable, integer, layout and string are valid. All nested R class classes are documented here: http://developer.android.com/reference/android/R.html
Get an application resource String by ResourceName. Returns Null if the String is not found.
GetApplicationStrings (ResourceNamesAsMap) AsMap
Get one or more application resource Strings. Pass a Map to this method where each Map key is an application String resource name. The method will return the same Map object where the Map values are the application resource Strings defined by the Map keys. If an application resource String is not found the Map value will not be changed.
Top