Fix missing callback in fallback activity to re-enable high res loader.
Bug: 111515602 Change-Id: Ie4a9e709392ef9dad001651129a46d4caee0c2ae
This commit is contained in:
parent
fc254baf88
commit
37ff8be692
|
@ -240,6 +240,12 @@ public class RecentsActivity extends BaseDraggingActivity {
|
||||||
onTrimMemory(TRIM_MEMORY_UI_HIDDEN);
|
onTrimMemory(TRIM_MEMORY_UI_HIDDEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnterAnimationComplete() {
|
||||||
|
super.onEnterAnimationComplete();
|
||||||
|
UiFactory.onEnterAnimationComplete(this);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onTrimMemory(int level) {
|
public void onTrimMemory(int level) {
|
||||||
super.onTrimMemory(level);
|
super.onTrimMemory(level);
|
||||||
|
|
Loading…
Reference in New Issue