- Move DeviceInfoSettings to deviceinfo package - Remove deprecated manifest entries - Rename a bunch of things - Add ripple and change text color to accent for security patch Change-Id: I35c04e53829a67cba553f984ad1a1b9319077873 Fixes: 71775150 Test: robotests
188 lines
7.5 KiB
Java
188 lines
7.5 KiB
Java
/*
|
|
* Copyright (C) 2008 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.deviceinfo;
|
|
|
|
import android.app.Activity;
|
|
import android.app.Fragment;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.provider.SearchIndexableResource;
|
|
import android.support.annotation.VisibleForTesting;
|
|
import android.telephony.TelephonyManager;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
|
|
import com.android.settings.R;
|
|
import com.android.settings.SettingsActivity;
|
|
import com.android.settings.dashboard.DashboardFragment;
|
|
import com.android.settings.dashboard.SummaryLoader;
|
|
import com.android.settings.deviceinfo.firmwareversion.FirmwareVersionPreferenceController;
|
|
import com.android.settings.deviceinfo.imei.ImeiInfoPreferenceController;
|
|
import com.android.settings.deviceinfo.simstatus.SimStatusPreferenceController;
|
|
import com.android.settings.search.BaseSearchIndexProvider;
|
|
import com.android.settings.search.Indexable;
|
|
import com.android.settingslib.core.AbstractPreferenceController;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public class DeviceInfoSettings extends DashboardFragment implements Indexable {
|
|
|
|
private static final String LOG_TAG = "DeviceInfoSettings";
|
|
|
|
private static final String KEY_LEGAL_CONTAINER = "legal_container";
|
|
|
|
@VisibleForTesting
|
|
static final int SIM_PREFERENCES_COUNT = 3;
|
|
@VisibleForTesting
|
|
static final int NON_SIM_PREFERENCES_COUNT = 2;
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return MetricsEvent.DEVICEINFO;
|
|
}
|
|
|
|
@Override
|
|
public int getHelpResource() {
|
|
return R.string.help_uri_about;
|
|
}
|
|
|
|
@Override
|
|
public void onCreate(Bundle icicle) {
|
|
super.onCreate(icicle);
|
|
final Bundle arguments = getArguments();
|
|
// Do not override initial expand children count if we come from
|
|
// search (EXTRA_FRAGMENT_ARG_KEY is set) - we need to display every if entry point
|
|
// is search.
|
|
if (arguments == null
|
|
|| !arguments.containsKey(SettingsActivity.EXTRA_FRAGMENT_ARG_KEY)) {
|
|
|
|
// Increase the number of children when the device contains more than 1 sim.
|
|
final TelephonyManager telephonyManager = (TelephonyManager) getContext()
|
|
.getSystemService(Context.TELEPHONY_SERVICE);
|
|
final int numberOfChildren = Math.max(SIM_PREFERENCES_COUNT,
|
|
SIM_PREFERENCES_COUNT * telephonyManager.getPhoneCount())
|
|
+ NON_SIM_PREFERENCES_COUNT;
|
|
getPreferenceScreen().setInitialExpandedChildrenCount(numberOfChildren);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
final BuildNumberPreferenceController buildNumberPreferenceController =
|
|
getPreferenceController(BuildNumberPreferenceController.class);
|
|
if (buildNumberPreferenceController.onActivityResult(requestCode, resultCode, data)) {
|
|
return;
|
|
}
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
}
|
|
|
|
@Override
|
|
protected String getLogTag() {
|
|
return LOG_TAG;
|
|
}
|
|
|
|
@Override
|
|
protected int getPreferenceScreenResId() {
|
|
return R.xml.device_info_settings;
|
|
}
|
|
|
|
@Override
|
|
protected List<AbstractPreferenceController> getPreferenceControllers(Context context) {
|
|
return buildPreferenceControllers(context, getActivity(), this /* fragment */,
|
|
getLifecycle());
|
|
}
|
|
|
|
private static class SummaryProvider implements SummaryLoader.SummaryProvider {
|
|
|
|
private final SummaryLoader mSummaryLoader;
|
|
|
|
public SummaryProvider(SummaryLoader summaryLoader) {
|
|
mSummaryLoader = summaryLoader;
|
|
}
|
|
|
|
@Override
|
|
public void setListening(boolean listening) {
|
|
if (listening) {
|
|
mSummaryLoader.setSummary(this, DeviceModelPreferenceController.getDeviceModel());
|
|
}
|
|
}
|
|
}
|
|
|
|
public static final SummaryLoader.SummaryProviderFactory SUMMARY_PROVIDER_FACTORY
|
|
= new SummaryLoader.SummaryProviderFactory() {
|
|
@Override
|
|
public SummaryLoader.SummaryProvider createSummaryProvider(Activity activity,
|
|
SummaryLoader summaryLoader) {
|
|
return new SummaryProvider(summaryLoader);
|
|
}
|
|
};
|
|
|
|
private static List<AbstractPreferenceController> buildPreferenceControllers(Context context,
|
|
Activity activity, Fragment fragment, Lifecycle lifecycle) {
|
|
final List<AbstractPreferenceController> controllers = new ArrayList<>();
|
|
controllers.add(new PhoneNumberPreferenceController(context));
|
|
controllers.add(new SimStatusPreferenceController(context, fragment));
|
|
controllers.add(new DeviceModelPreferenceController(context, fragment));
|
|
controllers.add(new ImeiInfoPreferenceController(context, fragment));
|
|
controllers.add(new FirmwareVersionPreferenceController(context, fragment));
|
|
controllers.add(new ImsStatusPreferenceController(context, lifecycle));
|
|
controllers.add(new IpAddressPreferenceController(context, lifecycle));
|
|
controllers.add(new WifiMacAddressPreferenceController(context, lifecycle));
|
|
controllers.add(new BluetoothAddressPreferenceController(context, lifecycle));
|
|
controllers.add(new RegulatoryInfoPreferenceController(context));
|
|
controllers.add(new SafetyInfoPreferenceController(context));
|
|
controllers.add(new ManualPreferenceController(context));
|
|
controllers.add(new FeedbackPreferenceController(fragment, context));
|
|
controllers.add(new FccEquipmentIdPreferenceController(context));
|
|
controllers.add(
|
|
new BuildNumberPreferenceController(context, activity, fragment, lifecycle));
|
|
return controllers;
|
|
}
|
|
|
|
/**
|
|
* For Search.
|
|
*/
|
|
public static final SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
|
new BaseSearchIndexProvider() {
|
|
|
|
@Override
|
|
public List<SearchIndexableResource> getXmlResourcesToIndex(
|
|
Context context, boolean enabled) {
|
|
final SearchIndexableResource sir = new SearchIndexableResource(context);
|
|
sir.xmlResId = R.xml.device_info_settings;
|
|
return Arrays.asList(sir);
|
|
}
|
|
|
|
@Override
|
|
public List<AbstractPreferenceController> getPreferenceControllers(
|
|
Context context) {
|
|
return buildPreferenceControllers(context, null /*activity */,
|
|
null /* fragment */, null /* lifecycle */);
|
|
}
|
|
|
|
@Override
|
|
public List<String> getNonIndexableKeys(Context context) {
|
|
List<String> keys = super.getNonIndexableKeys(context);
|
|
keys.add(KEY_LEGAL_CONTAINER);
|
|
return keys;
|
|
}
|
|
};
|
|
}
|