Remove use of setFast* properties

Change-Id: Ibfae0eed65d384789929829d6a24379561934eb4
This commit is contained in:
Michael Jurka
2012-01-16 04:21:35 -08:00
parent e3517d01ec
commit 7372c59277
3 changed files with 13 additions and 32 deletions

View File

@@ -624,8 +624,7 @@ public abstract class PagedView extends ViewGroup {
if (child != null) {
float scrollProgress = getScrollProgress(screenCenter, child, i);
float alpha = 1 - Math.abs(scrollProgress);
child.setFastAlpha(alpha);
child.fastInvalidate();
child.setAlpha(alpha);
}
}
invalidate();