Redirect Volume Panel to settings page
Flag: com.android.settings.flags.slices_retirement Bug: 328529042 Bug: 202262476 Test: manual test adb shell am start -a android.settings.panel.action.VOLUME Change-Id: I54f30d18eb10db864dcf5ee745b168b03e388b14
This commit is contained in:
@@ -22,11 +22,15 @@ import android.os.Bundle;
|
||||
import android.provider.Settings;
|
||||
import android.util.FeatureFlagUtils;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.android.settings.Utils;
|
||||
import com.android.settings.flags.Flags;
|
||||
|
||||
public class PanelFeatureProviderImpl implements PanelFeatureProvider {
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
public PanelContent getPanel(Context context, Bundle bundle) {
|
||||
if (context == null) {
|
||||
return null;
|
||||
@@ -59,7 +63,14 @@ public class PanelFeatureProviderImpl implements PanelFeatureProvider {
|
||||
context.sendBroadcast(volumeIntent);
|
||||
return null;
|
||||
} else {
|
||||
return VolumePanel.create(context);
|
||||
if (Flags.slicesRetirement()) {
|
||||
Intent volIntent = new Intent(Settings.ACTION_SOUND_SETTINGS);
|
||||
volIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
context.startActivity(volIntent);
|
||||
return null;
|
||||
} else {
|
||||
return VolumePanel.create(context);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user