Home | History | Annotate | Download | only in widget

Lines Matching refs:index

72     public Drawable getDrawable(int index) {
73 if (mWrapped.hasValue(index)) {
74 final int resourceId = mWrapped.getResourceId(index, 0);
79 return mWrapped.getDrawable(index);
82 public Drawable getDrawableIfKnown(int index) {
83 if (mWrapped.hasValue(index)) {
84 final int resourceId = mWrapped.getResourceId(index, 0);
93 * Retrieve the Typeface for the attribute at <var>index</var>.
98 * @param index Index of attribute to retrieve.
110 public Typeface getFont(@StyleableRes int index, int style,
112 final int resourceId = mWrapped.getResourceId(index, 0);
138 public CharSequence getText(int index) {
139 return mWrapped.getText(index);
142 public String getString(int index) {
143 return mWrapped.getString(index);
146 public String getNonResourceString(int index) {
147 return mWrapped.getNonResourceString(index);
150 public boolean getBoolean(int index, boolean defValue) {
151 return mWrapped.getBoolean(index, defValue);
154 public int getInt(int index, int defValue) {
155 return mWrapped.getInt(index, defValue);
158 public float getFloat(int index, float defValue) {
159 return mWrapped.getFloat(index, defValue);
162 public int getColor(int index, int defValue) {
163 return mWrapped.getColor(index, defValue);
166 public ColorStateList getColorStateList(int index) {
167 if (mWrapped.hasValue(index)) {
168 final int resourceId = mWrapped.getResourceId(index, 0);
177 return mWrapped.getColorStateList(index);
180 public int getInteger(int index, int defValue) {
181 return mWrapped.getInteger(index, defValue);
184 public float getDimension(int index, float defValue) {
185 return mWrapped.getDimension(index, defValue);
188 public int getDimensionPixelOffset(int index, int defValue) {
189 return mWrapped.getDimensionPixelOffset(index, defValue);
192 public int getDimensionPixelSize(int index, int defValue) {
193 return mWrapped.getDimensionPixelSize(index, defValue);
196 public int getLayoutDimension(int index, String name) {
197 return mWrapped.getLayoutDimension(index, name);
200 public int getLayoutDimension(int index, int defValue) {
201 return mWrapped.getLayoutDimension(index, defValue);
204 public float getFraction(int index, int base, int pbase, float defValue) {
205 return mWrapped.getFraction(index, base, pbase, defValue);
208 public int getResourceId(int index, int defValue) {
209 return mWrapped.getResourceId(index, defValue);
212 public CharSequence[] getTextArray(int index) {
213 return mWrapped.getTextArray(index);
216 public boolean getValue(int index, TypedValue outValue) {
217 return mWrapped.getValue(index, outValue);
220 public int getType(int index) {
222 return mWrapped.getType(index);
227 mWrapped.getValue(index, mTypedValue);
232 public boolean hasValue(int index) {
233 return mWrapped.hasValue(index);
236 public TypedValue peekValue(int index) {
237 return mWrapped.peekValue(index);