Fixing alpha issue on AllApps.

Change-Id: Ifbd81b3e8009cff963bb03bd953e498f8677cc38
This commit is contained in:
Winson Chung
2010-08-20 15:11:56 -07:00
parent 03c568e608
commit affd7b4d23
4 changed files with 15 additions and 26 deletions

View File

@@ -144,4 +144,10 @@ public class BubbleTextView extends TextView {
super.onDetachedFromWindow();
mBackground.setCallback(null);
}
@Override
protected boolean onSetAlpha(int alpha) {
mPaint.setAlpha(alpha);
return super.onSetAlpha(alpha);
}
}