Make some notification related slices public.

Only PreferenceControllers with isPublicSlice() set to true are exposed
to other apps. Others will be Settings only.

Bug: 141088937
Test: robotests
Change-Id: I6e7b9d45084ea9944143e606bfac56b2cae3e8a3
This commit is contained in:
Yi-Ling Chuang
2019-11-27 13:50:50 +08:00
parent 72af90940d
commit 3f9f068ca9
14 changed files with 70 additions and 1 deletions

View File

@@ -42,6 +42,11 @@ public class MediaVolumePreferenceController extends VolumeSeekBarPreferenceCont
return TextUtils.equals(getPreferenceKey(), KEY_MEDIA_VOLUME);
}
@Override
public boolean isPublicSlice() {
return true;
}
@Override
public boolean useDynamicSliceSummary() {
return true;