Files
app_Settings/src/com/android/settings/enterprise/NetworkLogsPreferenceController.java
Bartosz Fabianowski 9290184ebf Hide potentially invisible DO Disclosures by default
Hiding/unhiding a pref triggers an animation. DO Disclosures that may
not be visible should be hidden by default so that they fade in if
applicable, not fade out if not applicable.

Also, the network and security logging disclosures should only be shown
if logging is currently on or was on in the past and a network log was
retrieved at least once.

Bug: 32692748
Test: m RunSettingsRoboTests

Change-Id: I8c85f2f66ba295f145e5f5e79febb1b1a9bc6ede
2017-03-24 14:37:01 +01:00

44 lines
1.4 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.enterprise;
import android.content.Context;
import java.util.Date;
public class NetworkLogsPreferenceController extends AdminActionPreferenceControllerBase {
private static final String KEY_NETWORK_LOGS = "network_logs";
public NetworkLogsPreferenceController(Context context) {
super(context);
}
@Override
protected Date getAdminActionTimestamp() {
return mFeatureProvider.getLastNetworkLogRetrievalTime();
}
@Override
public boolean isAvailable() {
return mFeatureProvider.isNetworkLoggingEnabled() ||
mFeatureProvider.getLastNetworkLogRetrievalTime() != null;
}
@Override
public String getPreferenceKey() {
return KEY_NETWORK_LOGS;
}
}