Home | History | Annotate | Download | only in widget

Lines Matching refs:id

53     public CharSequence getText(int id) throws NotFoundException {
54 return mResources.getText(id);
58 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException {
59 return mResources.getQuantityText(id, quantity);
63 public String getString(int id) throws NotFoundException {
64 return mResources.getString(id);
68 public String getString(int id, Object... formatArgs) throws NotFoundException {
69 return mResources.getString(id, formatArgs);
73 public String getQuantityString(int id, int quantity, Object... formatArgs)
75 return mResources.getQuantityString(id, quantity, formatArgs);
79 public String getQuantityString(int id, int quantity) throws NotFoundException {
80 return mResources.getQuantityString(id, quantity);
84 public CharSequence getText(int id, CharSequence def) {
85 return mResources.getText(id, def);
89 public CharSequence[] getTextArray(int id) throws NotFoundException {
90 return mResources.getTextArray(id);
94 public String[] getStringArray(int id) throws NotFoundException {
95 return mResources.getStringArray(id);
99 public int[] getIntArray(int id) throws NotFoundException {
100 return mResources.getIntArray(id);
104 public TypedArray obtainTypedArray(int id) throws NotFoundException {
105 return mResources.obtainTypedArray(id);
109 public float getDimension(int id) throws NotFoundException {
110 return mResources.getDimension(id);
114 public int getDimensionPixelOffset(int id) throws NotFoundException {
115 return mResources.getDimensionPixelOffset(id);
119 public int getDimensionPixelSize(int id) throws NotFoundException {
120 return mResources.getDimensionPixelSize(id);
124 public float getFraction(int id, int base, int pbase) {
125 return mResources.getFraction(id, base, pbase);
129 public Drawable getDrawable(int id) throws NotFoundException {
130 return mResources.getDrawable(id);
135 public Drawable getDrawable(int id, Theme theme) throws NotFoundException {
136 return mResources.getDrawable(id, theme);
141 public Drawable getDrawableForDensity(int id, int density) throws NotFoundException {
142 return mResources.getDrawableForDensity(id, density);
147 public Drawable getDrawableForDensity(int id, int density, Theme theme) {
148 return mResources.getDrawableForDensity(id, density, theme);
152 public Movie getMovie(int id) throws NotFoundException {
153 return mResources.getMovie(id);
157 public int getColor(int id) throws NotFoundException {
158 return mResources.getColor(id);
162 public ColorStateList getColorStateList(int id) throws NotFoundException {
163 return mResources.getColorStateList(id);
167 public boolean getBoolean(int id) throws NotFoundException {
168 return mResources.getBoolean(id);
172 public int getInteger(int id) throws NotFoundException {
173 return mResources.getInteger(id);
177 public XmlResourceParser getLayout(int id) throws NotFoundException {
178 return mResources.getLayout(id);
182 public XmlResourceParser getAnimation(int id) throws NotFoundException {
183 return mResources.getAnimation(id);
187 public XmlResourceParser getXml(int id) throws NotFoundException {
188 return mResources.getXml(id);
192 public InputStream openRawResource(int id) throws NotFoundException {
193 return mResources.openRawResource(id);
197 public InputStream openRawResource(int id, TypedValue value) throws NotFoundException {
198 return mResources.openRawResource(id, value);
202 public AssetFileDescriptor openRawResourceFd(int id) throws NotFoundException {
203 return mResources.openRawResourceFd(id);
207 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
209 mResources.getValue(id, outValue, resolveRefs);
214 public void getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs)
216 mResources.getValueForDensity(id, density, outValue, resolveRefs);