Merge "Fix flickering before transition animation of app search"
This commit is contained in:
@@ -559,11 +559,18 @@ public class ManageApplications extends InstrumentedFragment
|
|||||||
super.onStart();
|
super.onStart();
|
||||||
updateView();
|
updateView();
|
||||||
if (mApplications != null) {
|
if (mApplications != null) {
|
||||||
mApplications.resume(mSortOrder);
|
|
||||||
mApplications.updateLoading();
|
mApplications.updateLoading();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
if (mApplications != null) {
|
||||||
|
mApplications.resume(mSortOrder);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onSaveInstanceState(Bundle outState) {
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
super.onSaveInstanceState(outState);
|
super.onSaveInstanceState(outState);
|
||||||
@@ -582,11 +589,16 @@ public class ManageApplications extends InstrumentedFragment
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onStop() {
|
public void onPause() {
|
||||||
super.onStop();
|
super.onPause();
|
||||||
if (mApplications != null) {
|
if (mApplications != null) {
|
||||||
mApplications.pause();
|
mApplications.pause();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStop() {
|
||||||
|
super.onStop();
|
||||||
if (mResetAppsHelper != null) {
|
if (mResetAppsHelper != null) {
|
||||||
mResetAppsHelper.stop();
|
mResetAppsHelper.stop();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user