Edifici di culto: come trovare esperti di impermeabilizzazione
Esperti di Impermeabilizzazione per Edifici di Culto: Come Trovare.
Come Trovare un Esperto di Impermeabilizzazione per Edifici di Culto.
Scopri come Ernesto.it offre servizi di ristrutturazione, giardinaggio e progettazione edilizia per migliorare ogni spazio. Con una vasta esperienza nel settore, i nostri esperti sono pronti a soddisfare le tue esigenze, garantendo risultati di alta qualità e ottimizzazione per la tua casa o giardino.
Trova professionisti vicino a te
Trova professionisti
/*
* 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.content.Context;
import android.os.UserHandle;
import android.support.v7.preference.Preference;
import android.support.v7.preference.PreferenceScreen;
import com.android.settings.core.PreferenceControllerMixin;
import com.android.settingslib.RestrictedLockUtils;
import com.android.settingslib.core.AbstractPreferenceController;
public class ZenModeVisualInterruptionSettingsPreferenceController extends
AbstractPreferenceController implements PreferenceControllerMixin {
private static final String KEY_VISUAL_INTERRUPTIONS = "zen_mode_visual_interruptions_settings";
private int mUserId;
public ZenModeVisualInterruptionSettingsPreferenceController(Context context, int userId) {
super(context);
mUserId = userId;
}
@Override
public boolean isAvailable() {
return true;
}
@Override
public String getPreferenceKey() {
return KEY_VISUAL_INTERRUPTIONS;
}
@Override
public void displayPreference(PreferenceScreen screen) {
super.displayPreference(screen);
Preference preference = screen.findPreference(KEY_VISUAL_INTERRUPTIONS);
if (preference != null) {
final boolean disabledByAdmin = RestrictedLockUtils.hasBaseUserRestriction(
mContext,
UserHandle.getUserRestriction(mUserId, UserHandle.getUserRestriction(
UserHandle.myUserId())),
UserHandle.myUserId());
if (disabledByAdmin) {
preference.setSummary(RestrictedLockUtils.getShortSupportMessage(mContext,
UserHandle.myUserId()));
}
}
}
}