Home
last modified time | relevance | path

Searched refs:drawables (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DStrokedTextView.java107 final Drawable[] drawables = getCompoundDrawables(); in onDraw() local
108 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()
DButtonDropTarget.java73 Drawable[] drawables = getCompoundDrawables(); in getCurrentDrawable() local
74 for (int i = 0; i < drawables.length; ++i) { in getCurrentDrawable()
75 if (drawables[i] != null) { in getCurrentDrawable()
76 return drawables[i]; in getCurrentDrawable()