- Can change rule name from header - Text for turning on/off rule is now "Use rule" instead of on/off Test: make ROBOTEST_FILTER=EntityHeaderControllerTest RunSettingsRoboTests -j40 Test: manual (Settings > Sound > Do Not Disturb > Turn On Automatically) Bug: 63077372 Change-Id: Id55b02de0509f168c2470a4f875e84140eb840fa
164 lines
4.8 KiB
Java
164 lines
4.8 KiB
Java
/*
|
|
* Copyright (C) 2015 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.AutomaticZenRule;
|
|
import android.app.NotificationManager;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.service.notification.ConditionProviderService;
|
|
import android.support.v7.preference.Preference;
|
|
import android.support.v7.preference.PreferenceScreen;
|
|
import android.util.Log;
|
|
import android.widget.Toast;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settingslib.core.AbstractPreferenceController;
|
|
|
|
public abstract class ZenModeRuleSettingsBase extends ZenModeSettingsBase {
|
|
|
|
protected static final String TAG = ZenModeSettingsBase.TAG;
|
|
protected static final boolean DEBUG = ZenModeSettingsBase.DEBUG;
|
|
|
|
protected Context mContext;
|
|
protected boolean mDisableListeners;
|
|
protected AutomaticZenRule mRule;
|
|
protected String mId;
|
|
|
|
protected ZenAutomaticRuleHeaderPreferenceController mHeader;
|
|
protected ZenAutomaticRuleSwitchPreferenceController mSwitch;
|
|
|
|
abstract protected void onCreateInternal();
|
|
abstract protected boolean setRule(AutomaticZenRule rule);
|
|
abstract protected void updateControlsInternal();
|
|
|
|
@Override
|
|
public void onCreate(Bundle icicle) {
|
|
mContext = getActivity();
|
|
|
|
final Intent intent = getActivity().getIntent();
|
|
if (DEBUG) Log.d(TAG, "onCreate getIntent()=" + intent);
|
|
if (intent == null) {
|
|
Log.w(TAG, "No intent");
|
|
toastAndFinish();
|
|
return;
|
|
}
|
|
|
|
mId = intent.getStringExtra(ConditionProviderService.EXTRA_RULE_ID);
|
|
if (mId == null) {
|
|
Log.w(TAG, "rule id is null");
|
|
toastAndFinish();
|
|
return;
|
|
}
|
|
|
|
if (DEBUG) Log.d(TAG, "mId=" + mId);
|
|
if (refreshRuleOrFinish()) {
|
|
return;
|
|
}
|
|
|
|
super.onCreate(icicle);
|
|
onCreateInternal();
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
if (isUiRestricted()) {
|
|
return;
|
|
}
|
|
updateControls();
|
|
}
|
|
|
|
@Override
|
|
public int getHelpResource() {
|
|
return R.string.help_uri_interruptions;
|
|
}
|
|
|
|
/**
|
|
* Update state of header preference managed by PreferenceController.
|
|
*/
|
|
protected void updateHeader() {
|
|
final PreferenceScreen screen = getPreferenceScreen();
|
|
|
|
mSwitch.onResume(mRule, mId);
|
|
mSwitch.displayPreference(screen);
|
|
updatePreference(mSwitch);
|
|
|
|
mHeader.onResume(mRule, mId);
|
|
mHeader.displayPreference(screen);
|
|
updatePreference(mHeader);
|
|
}
|
|
|
|
private void updatePreference(AbstractPreferenceController controller) {
|
|
final PreferenceScreen screen = getPreferenceScreen();
|
|
if (!controller.isAvailable()) {
|
|
return;
|
|
}
|
|
final String key = controller.getPreferenceKey();
|
|
|
|
final Preference preference = screen.findPreference(key);
|
|
if (preference == null) {
|
|
Log.d(TAG, String.format("Cannot find preference with key %s in Controller %s",
|
|
key, controller.getClass().getSimpleName()));
|
|
return;
|
|
}
|
|
controller.updateState(preference);
|
|
}
|
|
|
|
protected void updateRule(Uri newConditionId) {
|
|
mRule.setConditionId(newConditionId);
|
|
mBackend.setZenRule(mId, mRule);
|
|
}
|
|
|
|
@Override
|
|
protected void onZenModeConfigChanged() {
|
|
super.onZenModeConfigChanged();
|
|
if (!refreshRuleOrFinish()) {
|
|
updateControls();
|
|
}
|
|
}
|
|
|
|
private boolean refreshRuleOrFinish() {
|
|
mRule = getZenRule();
|
|
if (DEBUG) Log.d(TAG, "mRule=" + mRule);
|
|
if (!setRule(mRule)) {
|
|
toastAndFinish();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void toastAndFinish() {
|
|
Toast.makeText(mContext, R.string.zen_mode_rule_not_found_text, Toast.LENGTH_SHORT)
|
|
.show();
|
|
getActivity().finish();
|
|
}
|
|
|
|
private AutomaticZenRule getZenRule() {
|
|
return NotificationManager.from(mContext).getAutomaticZenRule(mId);
|
|
}
|
|
|
|
private void updateControls() {
|
|
mDisableListeners = true;
|
|
updateControlsInternal();
|
|
updateHeader();
|
|
mDisableListeners = false;
|
|
}
|
|
}
|