Searched refs:drawables (Results 1 – 2 of 2) sorted by relevance
107 final Drawable[] drawables = getCompoundDrawables(); in onDraw() local108 for (int i = 0; i < drawables.length; ++i) { in onDraw()109 if (drawables[i] != null) { in onDraw()110 drawables[i].setBounds(drawableLeft, drawableTop, in onDraw()111 drawableLeft + drawables[i].getIntrinsicWidth(), in onDraw()112 drawableTop + drawables[i].getIntrinsicHeight()); in onDraw()113 drawables[i].draw(mCanvas); in onDraw()
73 Drawable[] drawables = getCompoundDrawables(); in getCurrentDrawable() local74 for (int i = 0; i < drawables.length; ++i) { in getCurrentDrawable()75 if (drawables[i] != null) { in getCurrentDrawable()76 return drawables[i]; in getCurrentDrawable()