Fully enable the feature Bug: b/255363741, b/38477228 Test: make DEBUG_ROBOLECTRIC=1 ROBOTEST_FILTER="NotificationVolumePreferenceControllerTest|SeparateRingVolumePreferenceControllerTest|RingerModeAffectedPreferenceControllerTest|SoundSettingsTest" RunSettingsRoboTests -j40 Change-Id: Iec490fc254f71b6461dbf9f9beb4a11645a4a497
151 lines
4.7 KiB
Java
151 lines
4.7 KiB
Java
/*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.notification;
|
|
|
|
import android.app.NotificationManager;
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import android.media.AudioManager;
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import android.os.Message;
|
|
import android.service.notification.NotificationListenerService;
|
|
|
|
import androidx.lifecycle.OnLifecycleEvent;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
|
|
/**
|
|
* This slider represents both ring and notification
|
|
*/
|
|
public class RingVolumePreferenceController extends
|
|
RingerModeAffectedVolumePreferenceController {
|
|
|
|
private static final String KEY_RING_VOLUME = "ring_volume";
|
|
private static final String TAG = "RingVolumePreferenceController";
|
|
|
|
private final RingReceiver mReceiver = new RingReceiver();
|
|
private final H mHandler = new H();
|
|
|
|
public RingVolumePreferenceController(Context context) {
|
|
this(context, KEY_RING_VOLUME);
|
|
}
|
|
|
|
public RingVolumePreferenceController(Context context, String key) {
|
|
super(context, key, TAG);
|
|
|
|
mNormalIconId = R.drawable.ic_notifications;
|
|
mVibrateIconId = R.drawable.ic_volume_ringer_vibrate;
|
|
mSilentIconId = R.drawable.ic_notifications_off_24dp;
|
|
|
|
updateRingerMode();
|
|
}
|
|
|
|
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
mReceiver.register(true);
|
|
updateEffectsSuppressor();
|
|
selectPreferenceIconState();
|
|
|
|
if (mPreference != null) {
|
|
mPreference.setVisible(getAvailabilityStatus() == AVAILABLE);
|
|
}
|
|
}
|
|
|
|
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
|
|
@Override
|
|
public void onPause() {
|
|
super.onPause();
|
|
mReceiver.register(false);
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY_RING_VOLUME;
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return UNSUPPORTED_ON_DEVICE;
|
|
}
|
|
|
|
@Override
|
|
public int getAudioStream() {
|
|
return AudioManager.STREAM_RING;
|
|
}
|
|
|
|
@Override
|
|
protected boolean hintsMatch(int hints) {
|
|
return (hints & NotificationListenerService.HINT_HOST_DISABLE_CALL_EFFECTS) != 0
|
|
|| (hints & NotificationListenerService.HINT_HOST_DISABLE_EFFECTS) != 0;
|
|
}
|
|
|
|
private final class H extends Handler {
|
|
private static final int UPDATE_EFFECTS_SUPPRESSOR = 1;
|
|
private static final int UPDATE_RINGER_MODE = 2;
|
|
|
|
private H() {
|
|
super(Looper.getMainLooper());
|
|
}
|
|
|
|
@Override
|
|
public void handleMessage(Message msg) {
|
|
switch (msg.what) {
|
|
case UPDATE_EFFECTS_SUPPRESSOR:
|
|
updateEffectsSuppressor();
|
|
break;
|
|
case UPDATE_RINGER_MODE:
|
|
updateRingerMode();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
private class RingReceiver extends BroadcastReceiver {
|
|
private boolean mRegistered;
|
|
|
|
public void register(boolean register) {
|
|
if (mRegistered == register) return;
|
|
if (register) {
|
|
final IntentFilter filter = new IntentFilter();
|
|
filter.addAction(NotificationManager.ACTION_EFFECTS_SUPPRESSOR_CHANGED);
|
|
filter.addAction(AudioManager.INTERNAL_RINGER_MODE_CHANGED_ACTION);
|
|
mContext.registerReceiver(this, filter);
|
|
} else {
|
|
mContext.unregisterReceiver(this);
|
|
}
|
|
mRegistered = register;
|
|
}
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
final String action = intent.getAction();
|
|
if (NotificationManager.ACTION_EFFECTS_SUPPRESSOR_CHANGED.equals(action)) {
|
|
mHandler.sendEmptyMessage(H.UPDATE_EFFECTS_SUPPRESSOR);
|
|
} else if (AudioManager.INTERNAL_RINGER_MODE_CHANGED_ACTION.equals(action)) {
|
|
mHandler.sendEmptyMessage(H.UPDATE_RINGER_MODE);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|