Methods Summary |
---|
public android.content.res.XmlResourceParser | getAnimation(int id)
return mResources.getAnimation(id);
|
public boolean | getBoolean(int id)
return mResources.getBoolean(id);
|
public int | getColor(int id)
return mResources.getColor(id);
|
public android.content.res.ColorStateList | getColorStateList(int id)
return mResources.getColorStateList(id);
|
public android.content.res.Configuration | getConfiguration()
return mResources.getConfiguration();
|
public float | getDimension(int id)
return mResources.getDimension(id);
|
public int | getDimensionPixelOffset(int id)
return mResources.getDimensionPixelOffset(id);
|
public int | getDimensionPixelSize(int id)
return mResources.getDimensionPixelSize(id);
|
public android.util.DisplayMetrics | getDisplayMetrics()
return mResources.getDisplayMetrics();
|
public android.graphics.drawable.Drawable | getDrawable(int id)
return mResources.getDrawable(id);
|
public android.graphics.drawable.Drawable | getDrawable(int id, Theme theme)
return mResources.getDrawable(id, theme);
|
public android.graphics.drawable.Drawable | getDrawableForDensity(int id, int density)
return mResources.getDrawableForDensity(id, density);
|
public android.graphics.drawable.Drawable | getDrawableForDensity(int id, int density, Theme theme)
return mResources.getDrawableForDensity(id, density, theme);
|
public float | getFraction(int id, int base, int pbase)
return mResources.getFraction(id, base, pbase);
|
public int | getIdentifier(java.lang.String name, java.lang.String defType, java.lang.String defPackage)
return mResources.getIdentifier(name, defType, defPackage);
|
public int[] | getIntArray(int id)
return mResources.getIntArray(id);
|
public int | getInteger(int id)
return mResources.getInteger(id);
|
public android.content.res.XmlResourceParser | getLayout(int id)
return mResources.getLayout(id);
|
public android.graphics.Movie | getMovie(int id)
return mResources.getMovie(id);
|
public java.lang.String | getQuantityString(int id, int quantity, java.lang.Object formatArgs)
return mResources.getQuantityString(id, quantity, formatArgs);
|
public java.lang.String | getQuantityString(int id, int quantity)
return mResources.getQuantityString(id, quantity);
|
public java.lang.CharSequence | getQuantityText(int id, int quantity)
return mResources.getQuantityText(id, quantity);
|
public java.lang.String | getResourceEntryName(int resid)
return mResources.getResourceEntryName(resid);
|
public java.lang.String | getResourceName(int resid)
return mResources.getResourceName(resid);
|
public java.lang.String | getResourcePackageName(int resid)
return mResources.getResourcePackageName(resid);
|
public java.lang.String | getResourceTypeName(int resid)
return mResources.getResourceTypeName(resid);
|
public java.lang.String | getString(int id)
return mResources.getString(id);
|
public java.lang.String | getString(int id, java.lang.Object formatArgs)
return mResources.getString(id, formatArgs);
|
public java.lang.String[] | getStringArray(int id)
return mResources.getStringArray(id);
|
public java.lang.CharSequence | getText(int id)
return mResources.getText(id);
|
public java.lang.CharSequence | getText(int id, java.lang.CharSequence def)
return mResources.getText(id, def);
|
public java.lang.CharSequence[] | getTextArray(int id)
return mResources.getTextArray(id);
|
public void | getValue(int id, android.util.TypedValue outValue, boolean resolveRefs)
mResources.getValue(id, outValue, resolveRefs);
|
public void | getValue(java.lang.String name, android.util.TypedValue outValue, boolean resolveRefs)
mResources.getValue(name, outValue, resolveRefs);
|
public void | getValueForDensity(int id, int density, android.util.TypedValue outValue, boolean resolveRefs)
mResources.getValueForDensity(id, density, outValue, resolveRefs);
|
public android.content.res.XmlResourceParser | getXml(int id)
return mResources.getXml(id);
|
public android.content.res.TypedArray | obtainAttributes(android.util.AttributeSet set, int[] attrs)
return mResources.obtainAttributes(set, attrs);
|
public android.content.res.TypedArray | obtainTypedArray(int id)
return mResources.obtainTypedArray(id);
|
public java.io.InputStream | openRawResource(int id)
return mResources.openRawResource(id);
|
public java.io.InputStream | openRawResource(int id, android.util.TypedValue value)
return mResources.openRawResource(id, value);
|
public android.content.res.AssetFileDescriptor | openRawResourceFd(int id)
return mResources.openRawResourceFd(id);
|
public void | parseBundleExtra(java.lang.String tagName, android.util.AttributeSet attrs, android.os.Bundle outBundle)
mResources.parseBundleExtra(tagName, attrs, outBundle);
|
public void | parseBundleExtras(android.content.res.XmlResourceParser parser, android.os.Bundle outBundle)
mResources.parseBundleExtras(parser, outBundle);
|
public void | updateConfiguration(android.content.res.Configuration config, android.util.DisplayMetrics metrics)
super.updateConfiguration(config, metrics);
if (mResources != null) { // called from super's constructor. So, need to check.
mResources.updateConfiguration(config, metrics);
}
|