HomeSort by relevance Sort by last modified time
    Searched defs:restoreAlpha (Results 1 - 2 of 2) sorted by null

  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 517 final int restoreAlpha;
520 restoreAlpha = p.getAlpha();
521 p.setAlpha((int) (restoreAlpha * state.mBaseAlpha + 0.5f));
523 restoreAlpha = -1;
571 if (restoreAlpha >= 0) {
572 paint.setAlpha(restoreAlpha);
    [all...]
NinePatchDrawable.java 207 final int restoreAlpha;
209 restoreAlpha = getPaint().getAlpha();
210 mPaint.setAlpha((int) (restoreAlpha * state.mBaseAlpha + 0.5f));
212 restoreAlpha = -1;
258 if (restoreAlpha >= 0) {
259 mPaint.setAlpha(restoreAlpha);

Completed in 289 milliseconds