Merge changes I46acd27a,I70b322e1 into honeycomb
* changes: aa is better than cc Prevent ProgressBar from slowing down everything. bug #3422568
This commit is contained in:
@@ -2224,10 +2224,12 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
|
||||
final View[] children = mChildren;
|
||||
for (int i = 0; i < count; i++) {
|
||||
final View child = children[i];
|
||||
child.mRecreateDisplayList = (child.mPrivateFlags & INVALIDATED) == INVALIDATED;
|
||||
child.mPrivateFlags &= ~INVALIDATED;
|
||||
child.getDisplayList();
|
||||
child.mRecreateDisplayList = false;
|
||||
if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE || child.getAnimation() != null) {
|
||||
child.mRecreateDisplayList = (child.mPrivateFlags & INVALIDATED) == INVALIDATED;
|
||||
child.mPrivateFlags &= ~INVALIDATED;
|
||||
child.getDisplayList();
|
||||
child.mRecreateDisplayList = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<drawable name="status_bar_background">#000000</drawable>
|
||||
<drawable name="notification_icon_area_smoke">#CC000000</drawable>
|
||||
<drawable name="notification_icon_area_smoke">#aa000000</drawable>
|
||||
</resources>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user