Merge "Don't show games and music apps in Other Apps."

This commit is contained in:
Daniel Nishi
2017-02-14 18:45:29 +00:00
committed by Android (Google) Code Review

View File

@@ -381,6 +381,8 @@ public class ManageApplications extends InstrumentedPreferenceFragment
AppFilter filter = new VolumeFilter(mVolumeUuid);
if (mStorageType == STORAGE_TYPE_MUSIC) {
filter = new CompoundFilter(ApplicationsState.FILTER_AUDIO, filter);
} else {
filter = new CompoundFilter(ApplicationsState.FILTER_OTHER_APPS, filter);
}
mApplications.setOverrideFilter(filter);
}