Lines Matching refs:id

51     public CharSequence getText(int id) throws NotFoundException {
52 return mResources.getText(id);
56 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException {
57 return mResources.getQuantityText(id, quantity);
61 public String getString(int id) throws NotFoundException {
62 return mResources.getString(id);
66 public String getString(int id, Object... formatArgs) throws NotFoundException {
67 return mResources.getString(id, formatArgs);
71 public String getQuantityString(int id, int quantity, Object... formatArgs)
73 return mResources.getQuantityString(id, quantity, formatArgs);
77 public String getQuantityString(int id, int quantity) throws NotFoundException {
78 return mResources.getQuantityString(id, quantity);
82 public CharSequence getText(int id, CharSequence def) {
83 return mResources.getText(id, def);
87 public CharSequence[] getTextArray(int id) throws NotFoundException {
88 return mResources.getTextArray(id);
92 public String[] getStringArray(int id) throws NotFoundException {
93 return mResources.getStringArray(id);
97 public int[] getIntArray(int id) throws NotFoundException {
98 return mResources.getIntArray(id);
102 public TypedArray obtainTypedArray(int id) throws NotFoundException {
103 return mResources.obtainTypedArray(id);
107 public float getDimension(int id) throws NotFoundException {
108 return mResources.getDimension(id);
112 public int getDimensionPixelOffset(int id) throws NotFoundException {
113 return mResources.getDimensionPixelOffset(id);
117 public int getDimensionPixelSize(int id) throws NotFoundException {
118 return mResources.getDimensionPixelSize(id);
122 public float getFraction(int id, int base, int pbase) {
123 return mResources.getFraction(id, base, pbase);
127 public Drawable getDrawable(int id) throws NotFoundException {
128 return mResources.getDrawable(id);
132 public Drawable getDrawable(int id, Theme theme) throws NotFoundException {
133 return mResources.getDrawable(id, theme);
137 public Drawable getDrawableForDensity(int id, int density) throws NotFoundException {
138 return mResources.getDrawableForDensity(id, density);
142 public Drawable getDrawableForDensity(int id, int density, Theme theme) {
143 return mResources.getDrawableForDensity(id, density, theme);
147 public Movie getMovie(int id) throws NotFoundException {
148 return mResources.getMovie(id);
152 public int getColor(int id) throws NotFoundException {
153 return mResources.getColor(id);
157 public ColorStateList getColorStateList(int id) throws NotFoundException {
158 return mResources.getColorStateList(id);
162 public boolean getBoolean(int id) throws NotFoundException {
163 return mResources.getBoolean(id);
167 public int getInteger(int id) throws NotFoundException {
168 return mResources.getInteger(id);
172 public XmlResourceParser getLayout(int id) throws NotFoundException {
173 return mResources.getLayout(id);
177 public XmlResourceParser getAnimation(int id) throws NotFoundException {
178 return mResources.getAnimation(id);
182 public XmlResourceParser getXml(int id) throws NotFoundException {
183 return mResources.getXml(id);
187 public InputStream openRawResource(int id) throws NotFoundException {
188 return mResources.openRawResource(id);
192 public InputStream openRawResource(int id, TypedValue value) throws NotFoundException {
193 return mResources.openRawResource(id, value);
197 public AssetFileDescriptor openRawResourceFd(int id) throws NotFoundException {
198 return mResources.openRawResourceFd(id);
202 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
204 mResources.getValue(id, outValue, resolveRefs);
208 public void getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs)
210 mResources.getValueForDensity(id, density, outValue, resolveRefs);