Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package com.android.settings; |
| 18 | |
Fan Zhang | 60f0107 | 2016-10-13 16:53:41 -0700 | [diff] [blame] | 19 | import android.app.ActionBar; |
Matthew Fritze | 7ac78f2 | 2016-10-03 13:26:07 -0700 | [diff] [blame] | 20 | import android.app.ActivityManager; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 21 | import android.app.Fragment; |
| 22 | import android.app.FragmentManager; |
| 23 | import android.app.FragmentTransaction; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 24 | import android.content.BroadcastReceiver; |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 25 | import android.content.ComponentName; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 26 | import android.content.Context; |
| 27 | import android.content.Intent; |
| 28 | import android.content.IntentFilter; |
| 29 | import android.content.SharedPreferences; |
| 30 | import android.content.pm.ActivityInfo; |
| 31 | import android.content.pm.PackageManager; |
| 32 | import android.content.pm.PackageManager.NameNotFoundException; |
jackqdyulei | 6c355f5 | 2017-03-01 17:37:23 -0800 | [diff] [blame] | 33 | import android.graphics.Bitmap; |
jackqdyulei | 6c355f5 | 2017-03-01 17:37:23 -0800 | [diff] [blame] | 34 | import android.graphics.Canvas; |
| 35 | import android.graphics.drawable.Drawable; |
Jason Monk | fd2c722 | 2015-12-02 15:38:38 -0500 | [diff] [blame] | 36 | import android.os.AsyncTask; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 37 | import android.os.Bundle; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 38 | import android.os.UserHandle; |
| 39 | import android.os.UserManager; |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 40 | import android.support.annotation.VisibleForTesting; |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 41 | import android.support.v14.preference.PreferenceFragment; |
| 42 | import android.support.v7.preference.Preference; |
| 43 | import android.support.v7.preference.PreferenceManager; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 44 | import android.text.TextUtils; |
Fabrice Di Meglio | 59a4055 | 2014-05-23 16:46:50 -0700 | [diff] [blame] | 45 | import android.transition.TransitionManager; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 46 | import android.util.Log; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 47 | import android.view.View; |
| 48 | import android.view.View.OnClickListener; |
Fabrice Di Meglio | 59a4055 | 2014-05-23 16:46:50 -0700 | [diff] [blame] | 49 | import android.view.ViewGroup; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 50 | import android.widget.Button; |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 51 | import android.widget.Toolbar; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 52 | import com.android.internal.util.ArrayUtils; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 53 | import com.android.settings.Settings.WifiSettingsActivity; |
Anton Philippov | adfec55 | 2017-01-25 20:37:36 +0000 | [diff] [blame] | 54 | import com.android.settings.backup.BackupSettingsActivity; |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 55 | import com.android.settings.core.gateway.SettingsGateway; |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 56 | import com.android.settings.core.instrumentation.MetricsFeatureProvider; |
Fan Zhang | 5f79ae9 | 2016-08-18 16:04:19 -0700 | [diff] [blame] | 57 | import com.android.settings.core.instrumentation.SharedPreferencesLogger; |
Fan Zhang | a96a2d8 | 2016-09-27 17:51:11 -0700 | [diff] [blame] | 58 | import com.android.settings.dashboard.DashboardFeatureProvider; |
| 59 | import com.android.settings.dashboard.DashboardSummary; |
Fan Zhang | 11d2d68 | 2017-03-17 16:19:26 -0700 | [diff] [blame] | 60 | import com.android.settings.development.DevelopmentSettings; |
Fan Zhang | a96a2d8 | 2016-09-27 17:51:11 -0700 | [diff] [blame] | 61 | import com.android.settings.overlay.FeatureFactory; |
Jason Monk | 2ebc8a0 | 2015-02-13 15:23:19 -0500 | [diff] [blame] | 62 | import com.android.settings.search.DynamicIndexableContentMonitor; |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 63 | import com.android.settings.search.SearchActivity; |
Fan Zhang | 4fcd5ed | 2017-03-10 12:25:35 -0800 | [diff] [blame] | 64 | import com.android.settings.wfd.WifiDisplaySettings; |
Fabrice Di Meglio | 4193776 | 2014-05-13 19:51:59 -0700 | [diff] [blame] | 65 | import com.android.settings.widget.SwitchBar; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 66 | import com.android.settingslib.drawer.DashboardCategory; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 67 | import com.android.settingslib.drawer.SettingsDrawerActivity; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 68 | import java.util.ArrayList; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 69 | import java.util.List; |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 70 | import java.util.Set; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 71 | |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 72 | public class SettingsActivity extends SettingsDrawerActivity |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 73 | implements PreferenceManager.OnPreferenceTreeClickListener, |
| 74 | PreferenceFragment.OnPreferenceStartFragmentCallback, |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 75 | ButtonBarHandler, FragmentManager.OnBackStackChangedListener, OnClickListener { |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 76 | |
| 77 | private static final String LOG_TAG = "Settings"; |
| 78 | |
Matthew Fritze | be0989c | 2017-04-25 09:38:56 -0700 | [diff] [blame] | 79 | public static final int LOADER_ID_INDEXABLE_CONTENT_MONITOR = 1; |
Philip P. Moltmann | d9779db | 2016-02-24 12:11:05 -0800 | [diff] [blame] | 80 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 81 | // Constants for state save/restore |
Fabrice Di Meglio | 769630c | 2014-04-24 14:48:48 -0700 | [diff] [blame] | 82 | private static final String SAVE_KEY_CATEGORIES = ":settings:categories"; |
Matthew Fritze | 7d48ae8 | 2017-03-23 08:59:15 -0700 | [diff] [blame] | 83 | @VisibleForTesting |
| 84 | static final String SAVE_KEY_SHOW_HOME_AS_UP = ":settings:show_home_as_up"; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 85 | |
| 86 | /** |
| 87 | * When starting this activity, the invoking Intent can contain this extra |
| 88 | * string to specify which fragment should be initially displayed. |
| 89 | * <p/>Starting from Key Lime Pie, when this argument is passed in, the activity |
| 90 | * will call isValidFragment() to confirm that the fragment class name is valid for this |
| 91 | * activity. |
| 92 | */ |
| 93 | public static final String EXTRA_SHOW_FRAGMENT = ":settings:show_fragment"; |
| 94 | |
| 95 | /** |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 96 | * The metrics category constant for logging source when a setting fragment is opened. |
| 97 | */ |
| 98 | public static final String EXTRA_SOURCE_METRICS_CATEGORY = ":settings:source_metrics"; |
| 99 | |
| 100 | /** |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 101 | * When starting this activity and using {@link #EXTRA_SHOW_FRAGMENT}, |
| 102 | * this extra can also be specified to supply a Bundle of arguments to pass |
| 103 | * to that fragment when it is instantiated during the initial creation |
| 104 | * of the activity. |
| 105 | */ |
| 106 | public static final String EXTRA_SHOW_FRAGMENT_ARGUMENTS = ":settings:show_fragment_args"; |
| 107 | |
| 108 | /** |
Fabrice Di Meglio | c145732 | 2014-04-04 19:07:50 -0700 | [diff] [blame] | 109 | * Fragment "key" argument passed thru {@link #EXTRA_SHOW_FRAGMENT_ARGUMENTS} |
| 110 | */ |
| 111 | public static final String EXTRA_FRAGMENT_ARG_KEY = ":settings:fragment_args_key"; |
| 112 | |
Fabrice Di Meglio | 6f0739a | 2014-02-03 18:12:25 -0800 | [diff] [blame] | 113 | public static final String BACK_STACK_PREFS = ":settings:prefs"; |
| 114 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 115 | // extras that allow any preference activity to be launched as part of a wizard |
| 116 | |
| 117 | // show Back and Next buttons? takes boolean parameter |
| 118 | // Back will then return RESULT_CANCELED and Next RESULT_OK |
| 119 | protected static final String EXTRA_PREFS_SHOW_BUTTON_BAR = "extra_prefs_show_button_bar"; |
| 120 | |
| 121 | // add a Skip button? |
| 122 | private static final String EXTRA_PREFS_SHOW_SKIP = "extra_prefs_show_skip"; |
| 123 | |
| 124 | // specify custom text for the Back or Next buttons, or cause a button to not appear |
| 125 | // at all by setting it to null |
| 126 | protected static final String EXTRA_PREFS_SET_NEXT_TEXT = "extra_prefs_set_next_text"; |
| 127 | protected static final String EXTRA_PREFS_SET_BACK_TEXT = "extra_prefs_set_back_text"; |
| 128 | |
| 129 | /** |
| 130 | * When starting this activity and using {@link #EXTRA_SHOW_FRAGMENT}, |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 131 | * those extra can also be specify to supply the title or title res id to be shown for |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 132 | * that fragment. |
| 133 | */ |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 134 | public static final String EXTRA_SHOW_FRAGMENT_TITLE = ":settings:show_fragment_title"; |
Alexandra Gherghina | 62464b8 | 2014-08-11 12:40:13 +0100 | [diff] [blame] | 135 | /** |
| 136 | * The package name used to resolve the title resource id. |
| 137 | */ |
| 138 | public static final String EXTRA_SHOW_FRAGMENT_TITLE_RES_PACKAGE_NAME = |
| 139 | ":settings:show_fragment_title_res_package_name"; |
Fabrice Di Meglio | 61a1fec | 2014-08-13 16:22:38 -0700 | [diff] [blame] | 140 | public static final String EXTRA_SHOW_FRAGMENT_TITLE_RESID = |
| 141 | ":settings:show_fragment_title_resid"; |
| 142 | public static final String EXTRA_SHOW_FRAGMENT_AS_SHORTCUT = |
| 143 | ":settings:show_fragment_as_shortcut"; |
| 144 | |
| 145 | public static final String EXTRA_SHOW_FRAGMENT_AS_SUBSETTING = |
| 146 | ":settings:show_fragment_as_subsetting"; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 147 | |
Fan Zhang | 78ab9f9 | 2017-02-27 16:10:05 -0800 | [diff] [blame] | 148 | @Deprecated |
Udam Saini | 92779ce | 2016-03-28 14:29:48 -0700 | [diff] [blame] | 149 | public static final String EXTRA_HIDE_DRAWER = ":settings:hide_drawer"; |
| 150 | |
Jason Monk | 3069581 | 2015-11-17 09:01:08 -0500 | [diff] [blame] | 151 | public static final String META_DATA_KEY_FRAGMENT_CLASS = |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 152 | "com.android.settings.FRAGMENT_CLASS"; |
| 153 | |
| 154 | private static final String EXTRA_UI_OPTIONS = "settings:ui_options"; |
| 155 | |
Jason Monk | d4f03ec | 2016-01-07 16:25:34 -0500 | [diff] [blame] | 156 | private static final int REQUEST_SUGGESTION = 42; |
| 157 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 158 | private String mFragmentClass; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 159 | |
Fabrice Di Meglio | 8eb3f0f | 2014-02-27 15:51:46 -0800 | [diff] [blame] | 160 | private CharSequence mInitialTitle; |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 161 | private int mInitialTitleResId; |
Fabrice Di Meglio | 8eb3f0f | 2014-02-27 15:51:46 -0800 | [diff] [blame] | 162 | |
Fabrice Di Meglio | 5a62d94 | 2014-07-01 17:18:40 -0700 | [diff] [blame] | 163 | private static final String[] LIKE_SHORTCUT_INTENT_ACTION_ARRAY = { |
| 164 | "android.settings.APPLICATION_DETAILS_SETTINGS" |
| 165 | }; |
| 166 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 167 | private SharedPreferences mDevelopmentPreferences; |
| 168 | private SharedPreferences.OnSharedPreferenceChangeListener mDevelopmentPreferencesListener; |
| 169 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 170 | private boolean mBatteryPresent = true; |
| 171 | private BroadcastReceiver mBatteryInfoReceiver = new BroadcastReceiver() { |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 172 | @Override |
| 173 | public void onReceive(Context context, Intent intent) { |
| 174 | String action = intent.getAction(); |
| 175 | if (Intent.ACTION_BATTERY_CHANGED.equals(action)) { |
| 176 | boolean batteryPresent = Utils.isBatteryPresent(intent); |
| 177 | |
| 178 | if (mBatteryPresent != batteryPresent) { |
| 179 | mBatteryPresent = batteryPresent; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 180 | updateTilesList(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | } |
| 184 | }; |
| 185 | |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 186 | private DynamicIndexableContentMonitor mDynamicIndexableContentMonitor; |
Svetoslav | 853e471 | 2014-04-14 10:10:25 -0700 | [diff] [blame] | 187 | |
Fabrice Di Meglio | 4193776 | 2014-05-13 19:51:59 -0700 | [diff] [blame] | 188 | private SwitchBar mSwitchBar; |
| 189 | |
| 190 | private Button mNextButton; |
Fabrice Di Meglio | 3d35ec7 | 2014-06-06 12:13:29 -0700 | [diff] [blame] | 191 | |
Matthew Fritze | 7d48ae8 | 2017-03-23 08:59:15 -0700 | [diff] [blame] | 192 | @VisibleForTesting |
| 193 | boolean mDisplayHomeAsUpEnabled; |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 194 | |
Fabrice Di Meglio | 35062d6 | 2014-05-13 14:39:41 -0700 | [diff] [blame] | 195 | private boolean mIsShowingDashboard; |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 196 | private boolean mIsShortcut; |
Fabrice Di Meglio | 35062d6 | 2014-05-13 14:39:41 -0700 | [diff] [blame] | 197 | |
Fabrice Di Meglio | 59a4055 | 2014-05-23 16:46:50 -0700 | [diff] [blame] | 198 | private ViewGroup mContent; |
| 199 | |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 200 | private MetricsFeatureProvider mMetricsFeatureProvider; |
Matthew Fritze | 0ed37c3 | 2016-10-24 10:12:49 -0700 | [diff] [blame] | 201 | |
Fabrice Di Meglio | 769630c | 2014-04-24 14:48:48 -0700 | [diff] [blame] | 202 | // Categories |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 203 | private ArrayList<DashboardCategory> mCategories = new ArrayList<>(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 204 | |
Fan Zhang | a96a2d8 | 2016-09-27 17:51:11 -0700 | [diff] [blame] | 205 | private DashboardFeatureProvider mDashboardFeatureProvider; |
Jason Monk | d4f03ec | 2016-01-07 16:25:34 -0500 | [diff] [blame] | 206 | private ComponentName mCurrentSuggestion; |
Jim Miller | 0698a21 | 2014-10-16 19:49:07 -0700 | [diff] [blame] | 207 | |
Fabrice Di Meglio | 4193776 | 2014-05-13 19:51:59 -0700 | [diff] [blame] | 208 | public SwitchBar getSwitchBar() { |
| 209 | return mSwitchBar; |
| 210 | } |
| 211 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 212 | @Override |
| 213 | public boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref) { |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 214 | startPreferencePanel(caller, pref.getFragment(), pref.getExtras(), -1, pref.getTitle(), |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 215 | null, 0); |
| 216 | return true; |
| 217 | } |
| 218 | |
| 219 | @Override |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 220 | public boolean onPreferenceTreeClick(Preference preference) { |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 221 | return false; |
| 222 | } |
| 223 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 224 | @Override |
Jason Monk | 31c7c32 | 2016-01-20 14:41:52 -0500 | [diff] [blame] | 225 | public SharedPreferences getSharedPreferences(String name, int mode) { |
| 226 | if (name.equals(getPackageName() + "_preferences")) { |
Jason Monk | e4ebcd1 | 2016-02-21 09:37:41 -0500 | [diff] [blame] | 227 | return new SharedPreferencesLogger(this, getMetricsTag()); |
Jason Monk | 31c7c32 | 2016-01-20 14:41:52 -0500 | [diff] [blame] | 228 | } |
| 229 | return super.getSharedPreferences(name, mode); |
| 230 | } |
| 231 | |
Jason Monk | e4ebcd1 | 2016-02-21 09:37:41 -0500 | [diff] [blame] | 232 | private String getMetricsTag() { |
| 233 | String tag = getClass().getName(); |
| 234 | if (getIntent() != null && getIntent().hasExtra(EXTRA_SHOW_FRAGMENT)) { |
| 235 | tag = getIntent().getStringExtra(EXTRA_SHOW_FRAGMENT); |
| 236 | } |
| 237 | if (tag.startsWith("com.android.settings.")) { |
| 238 | tag = tag.replace("com.android.settings.", ""); |
| 239 | } |
| 240 | return tag; |
| 241 | } |
| 242 | |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 243 | private static boolean isShortCutIntent(final Intent intent) { |
| 244 | Set<String> categories = intent.getCategories(); |
| 245 | return (categories != null) && categories.contains("com.android.settings.SHORTCUT"); |
| 246 | } |
| 247 | |
Fabrice Di Meglio | 5b3c3c0 | 2014-06-30 15:18:08 -0700 | [diff] [blame] | 248 | private static boolean isLikeShortCutIntent(final Intent intent) { |
Fabrice Di Meglio | 5b7a100 | 2014-06-23 17:54:40 -0700 | [diff] [blame] | 249 | String action = intent.getAction(); |
Fabrice Di Meglio | 5a62d94 | 2014-07-01 17:18:40 -0700 | [diff] [blame] | 250 | if (action == null) { |
| 251 | return false; |
| 252 | } |
| 253 | for (int i = 0; i < LIKE_SHORTCUT_INTENT_ACTION_ARRAY.length; i++) { |
| 254 | if (LIKE_SHORTCUT_INTENT_ACTION_ARRAY[i].equals(action)) return true; |
| 255 | } |
| 256 | return false; |
Fabrice Di Meglio | 5b7a100 | 2014-06-23 17:54:40 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 259 | @Override |
| 260 | protected void onCreate(Bundle savedState) { |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 261 | super.onCreate(savedState); |
Jason Monk | fd2c722 | 2015-12-02 15:38:38 -0500 | [diff] [blame] | 262 | long startTime = System.currentTimeMillis(); |
Matthew Fritze | 0ed37c3 | 2016-10-24 10:12:49 -0700 | [diff] [blame] | 263 | |
| 264 | final FeatureFactory factory = FeatureFactory.getFactory(this); |
| 265 | |
| 266 | mDashboardFeatureProvider = factory.getDashboardFeatureProvider(this); |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 267 | mMetricsFeatureProvider = factory.getMetricsFeatureProvider(); |
Matthew Fritze | 0ed37c3 | 2016-10-24 10:12:49 -0700 | [diff] [blame] | 268 | |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 269 | // Should happen before any call to getIntent() |
| 270 | getMetaData(); |
| 271 | |
| 272 | final Intent intent = getIntent(); |
| 273 | if (intent.hasExtra(EXTRA_UI_OPTIONS)) { |
| 274 | getWindow().setUiOptions(intent.getIntExtra(EXTRA_UI_OPTIONS, 0)); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 275 | } |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 276 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 277 | mDevelopmentPreferences = getSharedPreferences(DevelopmentSettings.PREF_FILE, |
| 278 | Context.MODE_PRIVATE); |
| 279 | |
Fabrice Di Meglio | da8baba | 2014-06-10 17:12:51 -0700 | [diff] [blame] | 280 | // Getting Intent properties can only be done after the super.onCreate(...) |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 281 | final String initialFragmentName = intent.getStringExtra(EXTRA_SHOW_FRAGMENT); |
Fabrice Di Meglio | da8baba | 2014-06-10 17:12:51 -0700 | [diff] [blame] | 282 | |
Fabrice Di Meglio | 5b3c3c0 | 2014-06-30 15:18:08 -0700 | [diff] [blame] | 283 | mIsShortcut = isShortCutIntent(intent) || isLikeShortCutIntent(intent) || |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 284 | intent.getBooleanExtra(EXTRA_SHOW_FRAGMENT_AS_SHORTCUT, false); |
| 285 | |
Fabrice Di Meglio | e817a66 | 2014-07-16 19:51:06 -0700 | [diff] [blame] | 286 | final ComponentName cn = intent.getComponent(); |
Fabrice Di Meglio | 5a62d94 | 2014-07-01 17:18:40 -0700 | [diff] [blame] | 287 | final String className = cn.getClassName(); |
Fabrice Di Meglio | da8baba | 2014-06-10 17:12:51 -0700 | [diff] [blame] | 288 | |
Doris Ling | 1694d4b | 2017-03-03 14:21:37 -0800 | [diff] [blame] | 289 | mIsShowingDashboard = className.equals(Settings.class.getName()); |
Fabrice Di Meglio | 5a62d94 | 2014-07-01 17:18:40 -0700 | [diff] [blame] | 290 | |
Fabrice Di Meglio | 61a1fec | 2014-08-13 16:22:38 -0700 | [diff] [blame] | 291 | // This is a "Sub Settings" when: |
| 292 | // - this is a real SubSettings |
| 293 | // - or :settings:show_fragment_as_subsetting is passed to the Intent |
Jorim Jaggi | 4dfcb82 | 2015-04-29 17:21:32 -0700 | [diff] [blame] | 294 | final boolean isSubSettings = this instanceof SubSettings || |
Fabrice Di Meglio | 61a1fec | 2014-08-13 16:22:38 -0700 | [diff] [blame] | 295 | intent.getBooleanExtra(EXTRA_SHOW_FRAGMENT_AS_SUBSETTING, false); |
| 296 | |
Fan Zhang | 92f1e94 | 2017-01-21 10:07:26 -0800 | [diff] [blame] | 297 | // If this is a sub settings, then apply the SubSettings Theme for the ActionBar content |
| 298 | // insets |
Fabrice Di Meglio | 61a1fec | 2014-08-13 16:22:38 -0700 | [diff] [blame] | 299 | if (isSubSettings) { |
Fan Zhang | 92f1e94 | 2017-01-21 10:07:26 -0800 | [diff] [blame] | 300 | setTheme(R.style.Theme_SubSettings); |
Fabrice Di Meglio | da8baba | 2014-06-10 17:12:51 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Fabrice Di Meglio | d40dd45 | 2014-07-18 15:20:34 -0700 | [diff] [blame] | 303 | setContentView(mIsShowingDashboard ? |
| 304 | R.layout.settings_main_dashboard : R.layout.settings_main_prefs); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 305 | |
Andrew Sapperstein | a2dd997 | 2017-06-25 13:51:08 -0700 | [diff] [blame] | 306 | mContent = findViewById(R.id.main_content); |
Fabrice Di Meglio | 59a4055 | 2014-05-23 16:46:50 -0700 | [diff] [blame] | 307 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 308 | getFragmentManager().addOnBackStackChangedListener(this); |
| 309 | |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 310 | if (savedState != null) { |
Fabrice Di Meglio | 1800a9f | 2014-04-03 19:31:07 -0700 | [diff] [blame] | 311 | // We are restarting from a previous saved state; used that to initialize, instead |
| 312 | // of starting fresh. |
Fabrice Di Meglio | 0d643fd | 2014-06-16 20:11:27 -0700 | [diff] [blame] | 313 | setTitleFromIntent(intent); |
Fabrice Di Meglio | 5529d29 | 2014-02-11 19:52:28 -0800 | [diff] [blame] | 314 | |
Fabrice Di Meglio | 769630c | 2014-04-24 14:48:48 -0700 | [diff] [blame] | 315 | ArrayList<DashboardCategory> categories = |
| 316 | savedState.getParcelableArrayList(SAVE_KEY_CATEGORIES); |
| 317 | if (categories != null) { |
Fabrice Di Meglio | 5f99572 | 2014-05-19 19:51:31 -0700 | [diff] [blame] | 318 | mCategories.clear(); |
Fabrice Di Meglio | 769630c | 2014-04-24 14:48:48 -0700 | [diff] [blame] | 319 | mCategories.addAll(categories); |
Fabrice Di Meglio | b643cbf | 2014-03-10 12:18:39 -0700 | [diff] [blame] | 320 | setTitleFromBackStack(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 321 | } |
Fabrice Di Meglio | b731dd0 | 2014-04-03 18:40:38 -0700 | [diff] [blame] | 322 | |
| 323 | mDisplayHomeAsUpEnabled = savedState.getBoolean(SAVE_KEY_SHOW_HOME_AS_UP); |
Salvador Martinez | 2368e54 | 2016-07-25 18:16:47 -0700 | [diff] [blame] | 324 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 325 | } else { |
Doris Ling | cb69baf | 2017-02-23 17:50:03 -0800 | [diff] [blame] | 326 | launchSettingFragment(initialFragmentName, isSubSettings, intent); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 327 | } |
| 328 | |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 329 | if (mIsShowingDashboard) { |
| 330 | findViewById(R.id.search_bar).setVisibility(View.VISIBLE); |
| 331 | findViewById(R.id.action_bar).setVisibility(View.GONE); |
| 332 | Toolbar toolbar = findViewById(R.id.search_action_bar); |
| 333 | toolbar.setOnClickListener(this); |
| 334 | setActionBar(toolbar); |
Andrew Sapperstein | c217464 | 2017-06-25 15:18:46 -0700 | [diff] [blame] | 335 | |
| 336 | // Please forgive me for what I am about to do. |
| 337 | // |
| 338 | // Need to make the navigation icon non-clickable so that the entire card is clickable |
| 339 | // and goes to the search UI. Also set the background to null so there's no ripple. |
| 340 | View navView = toolbar.getNavigationView(); |
| 341 | navView.setClickable(false); |
| 342 | navView.setBackground(null); |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Andrew Sapperstein | a2dd997 | 2017-06-25 13:51:08 -0700 | [diff] [blame] | 345 | ActionBar actionBar = getActionBar(); |
| 346 | if (actionBar != null) { |
| 347 | actionBar.setDisplayHomeAsUpEnabled(mDisplayHomeAsUpEnabled); |
| 348 | actionBar.setHomeButtonEnabled(mDisplayHomeAsUpEnabled); |
Fabrice Di Meglio | d8aec08 | 2014-05-20 10:49:50 -0700 | [diff] [blame] | 349 | } |
Andrew Sapperstein | a2dd997 | 2017-06-25 13:51:08 -0700 | [diff] [blame] | 350 | mSwitchBar = findViewById(R.id.switch_bar); |
Jason Monk | e4ebcd1 | 2016-02-21 09:37:41 -0500 | [diff] [blame] | 351 | if (mSwitchBar != null) { |
| 352 | mSwitchBar.setMetricsTag(getMetricsTag()); |
| 353 | } |
Fabrice Di Meglio | 4193776 | 2014-05-13 19:51:59 -0700 | [diff] [blame] | 354 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 355 | // see if we should show Back/Next buttons |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 356 | if (intent.getBooleanExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false)) { |
| 357 | |
Fabrice Di Meglio | d2b64f3 | 2014-05-20 12:55:15 -0700 | [diff] [blame] | 358 | View buttonBar = findViewById(R.id.button_bar); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 359 | if (buttonBar != null) { |
| 360 | buttonBar.setVisibility(View.VISIBLE); |
| 361 | |
Fabrice Di Meglio | d2b64f3 | 2014-05-20 12:55:15 -0700 | [diff] [blame] | 362 | Button backButton = (Button)findViewById(R.id.back_button); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 363 | backButton.setOnClickListener(new OnClickListener() { |
| 364 | public void onClick(View v) { |
Matthew Fritze | 0b431fc | 2017-03-16 13:19:20 -0700 | [diff] [blame] | 365 | setResult(RESULT_CANCELED, null); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 366 | finish(); |
| 367 | } |
| 368 | }); |
Fabrice Di Meglio | d2b64f3 | 2014-05-20 12:55:15 -0700 | [diff] [blame] | 369 | Button skipButton = (Button)findViewById(R.id.skip_button); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 370 | skipButton.setOnClickListener(new OnClickListener() { |
| 371 | public void onClick(View v) { |
Matthew Fritze | 0b431fc | 2017-03-16 13:19:20 -0700 | [diff] [blame] | 372 | setResult(RESULT_OK, null); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 373 | finish(); |
| 374 | } |
| 375 | }); |
Fabrice Di Meglio | d2b64f3 | 2014-05-20 12:55:15 -0700 | [diff] [blame] | 376 | mNextButton = (Button)findViewById(R.id.next_button); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 377 | mNextButton.setOnClickListener(new OnClickListener() { |
| 378 | public void onClick(View v) { |
Matthew Fritze | 0b431fc | 2017-03-16 13:19:20 -0700 | [diff] [blame] | 379 | setResult(RESULT_OK, null); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 380 | finish(); |
| 381 | } |
| 382 | }); |
| 383 | |
| 384 | // set our various button parameters |
| 385 | if (intent.hasExtra(EXTRA_PREFS_SET_NEXT_TEXT)) { |
| 386 | String buttonText = intent.getStringExtra(EXTRA_PREFS_SET_NEXT_TEXT); |
| 387 | if (TextUtils.isEmpty(buttonText)) { |
| 388 | mNextButton.setVisibility(View.GONE); |
| 389 | } |
| 390 | else { |
| 391 | mNextButton.setText(buttonText); |
| 392 | } |
| 393 | } |
| 394 | if (intent.hasExtra(EXTRA_PREFS_SET_BACK_TEXT)) { |
| 395 | String buttonText = intent.getStringExtra(EXTRA_PREFS_SET_BACK_TEXT); |
| 396 | if (TextUtils.isEmpty(buttonText)) { |
| 397 | backButton.setVisibility(View.GONE); |
| 398 | } |
| 399 | else { |
| 400 | backButton.setText(buttonText); |
| 401 | } |
| 402 | } |
| 403 | if (intent.getBooleanExtra(EXTRA_PREFS_SHOW_SKIP, false)) { |
| 404 | skipButton.setVisibility(View.VISIBLE); |
| 405 | } |
| 406 | } |
| 407 | } |
Fabrice Di Meglio | ceb335f | 2014-07-23 16:25:30 -0700 | [diff] [blame] | 408 | |
Fan Zhang | efba6b4 | 2017-02-07 17:40:59 -0800 | [diff] [blame] | 409 | if (DEBUG_TIMING) { |
| 410 | Log.d(LOG_TAG, "onCreate took " + (System.currentTimeMillis() - startTime) + " ms"); |
| 411 | } |
Fabrice Di Meglio | ceb335f | 2014-07-23 16:25:30 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Doris Ling | cb69baf | 2017-02-23 17:50:03 -0800 | [diff] [blame] | 414 | @VisibleForTesting |
| 415 | void launchSettingFragment(String initialFragmentName, boolean isSubSettings, Intent intent) { |
| 416 | if (!mIsShowingDashboard && initialFragmentName != null) { |
Doris Ling | cb69baf | 2017-02-23 17:50:03 -0800 | [diff] [blame] | 417 | // UP will be shown only if it is a sub settings |
| 418 | if (mIsShortcut) { |
| 419 | mDisplayHomeAsUpEnabled = isSubSettings; |
| 420 | } else if (isSubSettings) { |
| 421 | mDisplayHomeAsUpEnabled = true; |
| 422 | } else { |
| 423 | mDisplayHomeAsUpEnabled = false; |
| 424 | } |
| 425 | setTitleFromIntent(intent); |
| 426 | |
| 427 | Bundle initialArguments = intent.getBundleExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS); |
| 428 | switchToFragment(initialFragmentName, initialArguments, true, false, |
| 429 | mInitialTitleResId, mInitialTitle, false); |
| 430 | } else { |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 431 | // Show search icon as up affordance if we are displaying the main Dashboard |
| 432 | mDisplayHomeAsUpEnabled = true; |
Doris Ling | cb69baf | 2017-02-23 17:50:03 -0800 | [diff] [blame] | 433 | mInitialTitleResId = R.string.dashboard_title; |
| 434 | |
| 435 | switchToFragment(DashboardSummary.class.getName(), null /* args */, false, false, |
| 436 | mInitialTitleResId, mInitialTitle, false); |
| 437 | } |
| 438 | } |
| 439 | |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 440 | private void setTitleFromIntent(Intent intent) { |
| 441 | final int initialTitleResId = intent.getIntExtra(EXTRA_SHOW_FRAGMENT_TITLE_RESID, -1); |
| 442 | if (initialTitleResId > 0) { |
| 443 | mInitialTitle = null; |
| 444 | mInitialTitleResId = initialTitleResId; |
Alexandra Gherghina | 62464b8 | 2014-08-11 12:40:13 +0100 | [diff] [blame] | 445 | |
| 446 | final String initialTitleResPackageName = intent.getStringExtra( |
| 447 | EXTRA_SHOW_FRAGMENT_TITLE_RES_PACKAGE_NAME); |
| 448 | if (initialTitleResPackageName != null) { |
| 449 | try { |
| 450 | Context authContext = createPackageContextAsUser(initialTitleResPackageName, |
| 451 | 0 /* flags */, new UserHandle(UserHandle.myUserId())); |
| 452 | mInitialTitle = authContext.getResources().getText(mInitialTitleResId); |
| 453 | setTitle(mInitialTitle); |
| 454 | mInitialTitleResId = -1; |
| 455 | return; |
| 456 | } catch (NameNotFoundException e) { |
| 457 | Log.w(LOG_TAG, "Could not find package" + initialTitleResPackageName); |
| 458 | } |
| 459 | } else { |
| 460 | setTitle(mInitialTitleResId); |
| 461 | } |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 462 | } else { |
| 463 | mInitialTitleResId = -1; |
| 464 | final String initialTitle = intent.getStringExtra(EXTRA_SHOW_FRAGMENT_TITLE); |
| 465 | mInitialTitle = (initialTitle != null) ? initialTitle : getTitle(); |
| 466 | setTitle(mInitialTitle); |
| 467 | } |
| 468 | } |
| 469 | |
Fabrice Di Meglio | c95be4f | 2014-03-07 12:57:38 -0800 | [diff] [blame] | 470 | @Override |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 471 | public void onBackStackChanged() { |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 472 | setTitleFromBackStack(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 473 | } |
| 474 | |
Fan Zhang | 2869157 | 2016-03-23 15:31:08 -0700 | [diff] [blame] | 475 | private void setTitleFromBackStack() { |
Fabrice Di Meglio | 8eb3f0f | 2014-02-27 15:51:46 -0800 | [diff] [blame] | 476 | final int count = getFragmentManager().getBackStackEntryCount(); |
Fabrice Di Meglio | b643cbf | 2014-03-10 12:18:39 -0700 | [diff] [blame] | 477 | |
Fabrice Di Meglio | 8eb3f0f | 2014-02-27 15:51:46 -0800 | [diff] [blame] | 478 | if (count == 0) { |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 479 | if (mInitialTitleResId > 0) { |
| 480 | setTitle(mInitialTitleResId); |
| 481 | } else { |
| 482 | setTitle(mInitialTitle); |
| 483 | } |
Fan Zhang | 2869157 | 2016-03-23 15:31:08 -0700 | [diff] [blame] | 484 | return; |
Fabrice Di Meglio | 5529d29 | 2014-02-11 19:52:28 -0800 | [diff] [blame] | 485 | } |
Fabrice Di Meglio | b643cbf | 2014-03-10 12:18:39 -0700 | [diff] [blame] | 486 | |
Fabrice Di Meglio | 8eb3f0f | 2014-02-27 15:51:46 -0800 | [diff] [blame] | 487 | FragmentManager.BackStackEntry bse = getFragmentManager().getBackStackEntryAt(count - 1); |
| 488 | setTitleFromBackStackEntry(bse); |
| 489 | } |
| 490 | |
| 491 | private void setTitleFromBackStackEntry(FragmentManager.BackStackEntry bse) { |
| 492 | final CharSequence title; |
| 493 | final int titleRes = bse.getBreadCrumbTitleRes(); |
| 494 | if (titleRes > 0) { |
| 495 | title = getText(titleRes); |
| 496 | } else { |
| 497 | title = bse.getBreadCrumbTitle(); |
| 498 | } |
| 499 | if (title != null) { |
| 500 | setTitle(title); |
| 501 | } |
Fabrice Di Meglio | 5529d29 | 2014-02-11 19:52:28 -0800 | [diff] [blame] | 502 | } |
| 503 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 504 | @Override |
| 505 | protected void onSaveInstanceState(Bundle outState) { |
| 506 | super.onSaveInstanceState(outState); |
Matthew Fritze | 7d48ae8 | 2017-03-23 08:59:15 -0700 | [diff] [blame] | 507 | saveState(outState); |
| 508 | } |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 509 | |
Matthew Fritze | 7d48ae8 | 2017-03-23 08:59:15 -0700 | [diff] [blame] | 510 | /** |
| 511 | * For testing purposes to avoid crashes from final variables in Activity's onSaveInstantState. |
| 512 | */ |
| 513 | @VisibleForTesting |
| 514 | void saveState(Bundle outState) { |
Fabrice Di Meglio | 769630c | 2014-04-24 14:48:48 -0700 | [diff] [blame] | 515 | if (mCategories.size() > 0) { |
| 516 | outState.putParcelableArrayList(SAVE_KEY_CATEGORIES, mCategories); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 517 | } |
Fabrice Di Meglio | d6985df | 2014-04-03 16:43:26 -0700 | [diff] [blame] | 518 | |
Fabrice Di Meglio | b731dd0 | 2014-04-03 18:40:38 -0700 | [diff] [blame] | 519 | outState.putBoolean(SAVE_KEY_SHOW_HOME_AS_UP, mDisplayHomeAsUpEnabled); |
Matthew Fritze | 7d48ae8 | 2017-03-23 08:59:15 -0700 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | @Override |
| 523 | protected void onRestoreInstanceState(Bundle savedInstanceState) { |
| 524 | super.onRestoreInstanceState(savedInstanceState); |
| 525 | |
| 526 | mDisplayHomeAsUpEnabled = savedInstanceState.getBoolean(SAVE_KEY_SHOW_HOME_AS_UP); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | @Override |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 530 | protected void onResume() { |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 531 | super.onResume(); |
| 532 | |
Andrew Sapperstein | a2dd997 | 2017-06-25 13:51:08 -0700 | [diff] [blame] | 533 | mDevelopmentPreferencesListener = (sharedPreferences, key) -> updateTilesList(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 534 | mDevelopmentPreferences.registerOnSharedPreferenceChangeListener( |
| 535 | mDevelopmentPreferencesListener); |
| 536 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 537 | registerReceiver(mBatteryInfoReceiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED)); |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 538 | if (mDynamicIndexableContentMonitor == null) { |
| 539 | mDynamicIndexableContentMonitor = new DynamicIndexableContentMonitor(); |
| 540 | } |
Philip P. Moltmann | d9779db | 2016-02-24 12:11:05 -0800 | [diff] [blame] | 541 | mDynamicIndexableContentMonitor.register(this, LOADER_ID_INDEXABLE_CONTENT_MONITOR); |
Fabrice Di Meglio | a327076 | 2014-04-16 16:54:56 -0700 | [diff] [blame] | 542 | |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 543 | updateTilesList(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | @Override |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 547 | protected void onPause() { |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 548 | super.onPause(); |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 549 | mDevelopmentPreferences.unregisterOnSharedPreferenceChangeListener( |
| 550 | mDevelopmentPreferencesListener); |
| 551 | mDevelopmentPreferencesListener = null; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 552 | unregisterReceiver(mBatteryInfoReceiver); |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 553 | if (mDynamicIndexableContentMonitor != null) { |
Tadashi G. Takaoka | a034fa5 | 2016-11-21 14:20:19 +0900 | [diff] [blame] | 554 | mDynamicIndexableContentMonitor.unregister(this, LOADER_ID_INDEXABLE_CONTENT_MONITOR); |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 555 | } |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | @Override |
jackqdyulei | 6c355f5 | 2017-03-01 17:37:23 -0800 | [diff] [blame] | 559 | public void setTaskDescription(ActivityManager.TaskDescription taskDescription) { |
| 560 | final Bitmap icon = getBitmapFromXmlResource(R.drawable.ic_launcher_settings); |
| 561 | taskDescription.setIcon(icon); |
| 562 | super.setTaskDescription(taskDescription); |
| 563 | } |
| 564 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 565 | protected boolean isValidFragment(String fragmentName) { |
| 566 | // Almost all fragments are wrapped in this, |
| 567 | // except for a few that have their own activities. |
Fan Zhang | a3e8f5c | 2016-12-01 09:52:10 -0800 | [diff] [blame] | 568 | for (int i = 0; i < SettingsGateway.ENTRY_FRAGMENTS.length; i++) { |
| 569 | if (SettingsGateway.ENTRY_FRAGMENTS[i].equals(fragmentName)) return true; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 570 | } |
| 571 | return false; |
| 572 | } |
| 573 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 574 | @Override |
| 575 | public Intent getIntent() { |
| 576 | Intent superIntent = super.getIntent(); |
| 577 | String startingFragment = getStartingFragmentClass(superIntent); |
| 578 | // This is called from super.onCreate, isMultiPane() is not yet reliable |
| 579 | // Do not use onIsHidingHeaders either, which relies itself on this method |
| 580 | if (startingFragment != null) { |
| 581 | Intent modIntent = new Intent(superIntent); |
| 582 | modIntent.putExtra(EXTRA_SHOW_FRAGMENT, startingFragment); |
| 583 | Bundle args = superIntent.getExtras(); |
| 584 | if (args != null) { |
| 585 | args = new Bundle(args); |
| 586 | } else { |
| 587 | args = new Bundle(); |
| 588 | } |
| 589 | args.putParcelable("intent", superIntent); |
Kenny Guy | ac1e20e | 2014-06-24 14:34:14 +0100 | [diff] [blame] | 590 | modIntent.putExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS, args); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 591 | return modIntent; |
| 592 | } |
| 593 | return superIntent; |
| 594 | } |
| 595 | |
| 596 | /** |
| 597 | * Checks if the component name in the intent is different from the Settings class and |
| 598 | * returns the class name to load as a fragment. |
| 599 | */ |
| 600 | private String getStartingFragmentClass(Intent intent) { |
| 601 | if (mFragmentClass != null) return mFragmentClass; |
| 602 | |
| 603 | String intentClass = intent.getComponent().getClassName(); |
| 604 | if (intentClass.equals(getClass().getName())) return null; |
| 605 | |
| 606 | if ("com.android.settings.ManageApplications".equals(intentClass) |
| 607 | || "com.android.settings.RunningServices".equals(intentClass) |
| 608 | || "com.android.settings.applications.StorageUse".equals(intentClass)) { |
| 609 | // Old names of manage apps. |
| 610 | intentClass = com.android.settings.applications.ManageApplications.class.getName(); |
| 611 | } |
| 612 | |
| 613 | return intentClass; |
| 614 | } |
| 615 | |
| 616 | /** |
Fabrice Di Meglio | 10afdb8 | 2014-02-11 19:50:56 +0000 | [diff] [blame] | 617 | * Start a new fragment containing a preference panel. If the preferences |
| 618 | * are being displayed in multi-pane mode, the given fragment class will |
| 619 | * be instantiated and placed in the appropriate pane. If running in |
| 620 | * single-pane mode, a new activity will be launched in which to show the |
| 621 | * fragment. |
| 622 | * |
| 623 | * @param fragmentClass Full name of the class implementing the fragment. |
| 624 | * @param args Any desired arguments to supply to the fragment. |
| 625 | * @param titleRes Optional resource identifier of the title of this |
| 626 | * fragment. |
| 627 | * @param titleText Optional text of the title of this fragment. |
| 628 | * @param resultTo Optional fragment that result data should be sent to. |
| 629 | * If non-null, resultTo.onActivityResult() will be called when this |
| 630 | * preference panel is done. The launched panel must use |
| 631 | * {@link #finishPreferencePanel(Fragment, int, Intent)} when done. |
| 632 | * @param resultRequestCode If resultTo is non-null, this is the caller's |
Fabrice Di Meglio | 58146c2 | 2014-06-26 16:20:26 -0700 | [diff] [blame] | 633 | * request code to be received with the result. |
Fabrice Di Meglio | 10afdb8 | 2014-02-11 19:50:56 +0000 | [diff] [blame] | 634 | */ |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 635 | public void startPreferencePanel(Fragment caller, String fragmentClass, Bundle args, |
| 636 | int titleRes, CharSequence titleText, Fragment resultTo, int resultRequestCode) { |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 637 | String title = null; |
| 638 | if (titleRes < 0) { |
| 639 | if (titleText != null) { |
| 640 | title = titleText.toString(); |
| 641 | } else { |
| 642 | // There not much we can do in that case |
| 643 | title = ""; |
| 644 | } |
Fabrice Di Meglio | 911fb2a | 2014-04-04 17:55:57 -0700 | [diff] [blame] | 645 | } |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 646 | Utils.startWithFragment(this, fragmentClass, args, resultTo, resultRequestCode, |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 647 | titleRes, title, mIsShortcut, mMetricsFeatureProvider.getMetricsCategory(caller)); |
Fabrice Di Meglio | 10afdb8 | 2014-02-11 19:50:56 +0000 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | /** |
Zoltan Szatmary-Ban | 7a2ccf2 | 2014-09-18 10:26:11 +0100 | [diff] [blame] | 651 | * Start a new fragment in a new activity containing a preference panel for a given user. If the |
| 652 | * preferences are being displayed in multi-pane mode, the given fragment class will be |
| 653 | * instantiated and placed in the appropriate pane. If running in single-pane mode, a new |
| 654 | * activity will be launched in which to show the fragment. |
| 655 | * |
| 656 | * @param fragmentClass Full name of the class implementing the fragment. |
| 657 | * @param args Any desired arguments to supply to the fragment. |
| 658 | * @param titleRes Optional resource identifier of the title of this fragment. |
| 659 | * @param titleText Optional text of the title of this fragment. |
| 660 | * @param userHandle The user for which the panel has to be started. |
| 661 | */ |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 662 | public void startPreferencePanelAsUser(Fragment caller, String fragmentClass, |
| 663 | Bundle args, int titleRes, CharSequence titleText, UserHandle userHandle) { |
Lifu Tang | d033285 | 2015-04-02 12:05:46 -0700 | [diff] [blame] | 664 | // This is a workaround. |
| 665 | // |
| 666 | // Calling startWithFragmentAsUser() without specifying FLAG_ACTIVITY_NEW_TASK to the intent |
| 667 | // starting the fragment could cause a native stack corruption. See b/17523189. However, |
| 668 | // adding that flag and start the preference panel with the same UserHandler will make it |
| 669 | // impossible to use back button to return to the previous screen. See b/20042570. |
| 670 | // |
| 671 | // We work around this issue by adding FLAG_ACTIVITY_NEW_TASK to the intent, while doing |
| 672 | // another check here to call startPreferencePanel() instead of startWithFragmentAsUser() |
| 673 | // when we're calling it as the same user. |
| 674 | if (userHandle.getIdentifier() == UserHandle.myUserId()) { |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 675 | startPreferencePanel(caller, fragmentClass, args, titleRes, titleText, null, 0); |
Lifu Tang | d033285 | 2015-04-02 12:05:46 -0700 | [diff] [blame] | 676 | } else { |
| 677 | String title = null; |
| 678 | if (titleRes < 0) { |
| 679 | if (titleText != null) { |
| 680 | title = titleText.toString(); |
| 681 | } else { |
| 682 | // There not much we can do in that case |
| 683 | title = ""; |
| 684 | } |
Zoltan Szatmary-Ban | 7a2ccf2 | 2014-09-18 10:26:11 +0100 | [diff] [blame] | 685 | } |
Fan Zhang | c6ca314 | 2017-02-14 15:02:35 -0800 | [diff] [blame] | 686 | Utils.startWithFragmentAsUser(this, fragmentClass, args, titleRes, title, |
| 687 | mIsShortcut, mMetricsFeatureProvider.getMetricsCategory(caller), userHandle); |
Zoltan Szatmary-Ban | 7a2ccf2 | 2014-09-18 10:26:11 +0100 | [diff] [blame] | 688 | } |
Zoltan Szatmary-Ban | 7a2ccf2 | 2014-09-18 10:26:11 +0100 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /** |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 692 | * Called by a preference panel fragment to finish itself. |
| 693 | * |
| 694 | * @param caller The fragment that is asking to be finished. |
| 695 | * @param resultCode Optional result code to send back to the original |
| 696 | * launching fragment. |
| 697 | * @param resultData Optional result data to send back to the original |
| 698 | * launching fragment. |
| 699 | */ |
| 700 | public void finishPreferencePanel(Fragment caller, int resultCode, Intent resultData) { |
| 701 | setResult(resultCode, resultData); |
Fabrice Di Meglio | 58146c2 | 2014-06-26 16:20:26 -0700 | [diff] [blame] | 702 | finish(); |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | /** |
Fabrice Di Meglio | 10afdb8 | 2014-02-11 19:50:56 +0000 | [diff] [blame] | 706 | * Start a new fragment. |
| 707 | * |
| 708 | * @param fragment The fragment to start |
| 709 | * @param push If true, the current fragment will be pushed onto the back stack. If false, |
| 710 | * the current fragment will be replaced. |
| 711 | */ |
| 712 | public void startPreferenceFragment(Fragment fragment, boolean push) { |
| 713 | FragmentTransaction transaction = getFragmentManager().beginTransaction(); |
Anna Galusza | 6b1e9db | 2016-03-30 17:25:36 -0700 | [diff] [blame] | 714 | transaction.replace(R.id.main_content, fragment); |
Fabrice Di Meglio | 10afdb8 | 2014-02-11 19:50:56 +0000 | [diff] [blame] | 715 | if (push) { |
| 716 | transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN); |
| 717 | transaction.addToBackStack(BACK_STACK_PREFS); |
| 718 | } else { |
| 719 | transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE); |
| 720 | } |
| 721 | transaction.commitAllowingStateLoss(); |
| 722 | } |
| 723 | |
| 724 | /** |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 725 | * Switch to a specific Fragment with taking care of validation, Title and BackStack |
| 726 | */ |
| 727 | private Fragment switchToFragment(String fragmentName, Bundle args, boolean validate, |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 728 | boolean addToBackStack, int titleResId, CharSequence title, boolean withTransition) { |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 729 | if (validate && !isValidFragment(fragmentName)) { |
| 730 | throw new IllegalArgumentException("Invalid fragment for this activity: " |
| 731 | + fragmentName); |
| 732 | } |
| 733 | Fragment f = Fragment.instantiate(this, fragmentName, args); |
| 734 | FragmentTransaction transaction = getFragmentManager().beginTransaction(); |
Anna Galusza | 6b1e9db | 2016-03-30 17:25:36 -0700 | [diff] [blame] | 735 | transaction.replace(R.id.main_content, f); |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 736 | if (withTransition) { |
Fabrice Di Meglio | 59a4055 | 2014-05-23 16:46:50 -0700 | [diff] [blame] | 737 | TransitionManager.beginDelayedTransition(mContent); |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 738 | } |
| 739 | if (addToBackStack) { |
| 740 | transaction.addToBackStack(SettingsActivity.BACK_STACK_PREFS); |
| 741 | } |
Fabrice Di Meglio | a9e7799 | 2014-06-09 12:52:24 -0700 | [diff] [blame] | 742 | if (titleResId > 0) { |
| 743 | transaction.setBreadCrumbTitle(titleResId); |
| 744 | } else if (title != null) { |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 745 | transaction.setBreadCrumbTitle(title); |
| 746 | } |
| 747 | transaction.commitAllowingStateLoss(); |
Fabrice Di Meglio | 59a4055 | 2014-05-23 16:46:50 -0700 | [diff] [blame] | 748 | getFragmentManager().executePendingTransactions(); |
Fabrice Di Meglio | d25314d | 2014-03-21 19:24:43 -0700 | [diff] [blame] | 749 | return f; |
| 750 | } |
| 751 | |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 752 | private void updateTilesList() { |
Jason Monk | fd2c722 | 2015-12-02 15:38:38 -0500 | [diff] [blame] | 753 | // Generally the items that are will be changing from these updates will |
| 754 | // not be in the top list of tiles, so run it in the background and the |
| 755 | // SettingsDrawerActivity will pick up on the updates automatically. |
| 756 | AsyncTask.execute(new Runnable() { |
| 757 | @Override |
| 758 | public void run() { |
| 759 | doUpdateTilesList(); |
| 760 | } |
| 761 | }); |
| 762 | } |
| 763 | |
| 764 | private void doUpdateTilesList() { |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 765 | PackageManager pm = getPackageManager(); |
Xiaohui Chen | 44879a3 | 2015-07-22 13:53:22 -0700 | [diff] [blame] | 766 | final UserManager um = UserManager.get(this); |
| 767 | final boolean isAdmin = um.isAdminUser(); |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 768 | boolean somethingChanged = false; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 769 | String packageName = getPackageName(); |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 770 | somethingChanged = setTileEnabled( |
| 771 | new ComponentName(packageName, WifiSettingsActivity.class.getName()), |
| 772 | pm.hasSystemFeature(PackageManager.FEATURE_WIFI), isAdmin) || somethingChanged; |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 773 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 774 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 775 | Settings.BluetoothSettingsActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 776 | pm.hasSystemFeature(PackageManager.FEATURE_BLUETOOTH), isAdmin) |
| 777 | || somethingChanged; |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 778 | |
Rajeev Kumar | 4a5e3dc | 2017-07-18 19:21:34 -0700 | [diff] [blame^] | 779 | boolean isDataPlanFeatureEnabled = FeatureFactory.getFactory(this) |
| 780 | .getDataPlanFeatureProvider() |
| 781 | .isEnabled(); |
| 782 | |
| 783 | // When the data plan feature flag is turned on we disable DataUsageSummaryActivity |
| 784 | // and enable DataPlanUsageSummaryActivity. When the feature flag is turned off we do the |
| 785 | // reverse. |
| 786 | |
| 787 | // Disable DataUsageSummaryActivity if the data plan feature flag is turned on otherwise |
| 788 | // disable DataPlanUsageSummaryActivity. |
| 789 | somethingChanged = setTileEnabled( |
| 790 | new ComponentName(packageName, |
| 791 | isDataPlanFeatureEnabled |
| 792 | ? Settings.DataUsageSummaryActivity.class.getName() |
| 793 | : Settings.DataPlanUsageSummaryActivity.class.getName()), |
| 794 | false /* enabled */, |
| 795 | isAdmin) || somethingChanged; |
| 796 | |
| 797 | // Enable DataUsageSummaryActivity if the data plan feature flag is turned on otherwise |
| 798 | // enable DataPlanUsageSummaryActivity. |
| 799 | somethingChanged = setTileEnabled( |
| 800 | new ComponentName(packageName, |
| 801 | isDataPlanFeatureEnabled |
| 802 | ? Settings.DataPlanUsageSummaryActivity.class.getName() |
| 803 | : Settings.DataUsageSummaryActivity.class.getName()), |
| 804 | Utils.isBandwidthControlEnabled() /* enabled */, |
| 805 | isAdmin) || somethingChanged; |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 806 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 807 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 808 | Settings.SimSettingsActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 809 | Utils.showSimCardTile(this), isAdmin) |
| 810 | || somethingChanged; |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 811 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 812 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 813 | Settings.PowerUsageSummaryActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 814 | mBatteryPresent, isAdmin) || somethingChanged; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 815 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 816 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 817 | Settings.UserSettingsActivity.class.getName()), |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 818 | UserHandle.MU_ENABLED && UserManager.supportsMultipleUsers() |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 819 | && !Utils.isMonkeyRunning(), isAdmin) |
| 820 | || somethingChanged; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 821 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 822 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 823 | Settings.NetworkDashboardActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 824 | !UserManager.isDeviceInDemoMode(this), isAdmin) |
| 825 | || somethingChanged; |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 826 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 827 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 828 | Settings.ConnectedDeviceDashboardActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 829 | !UserManager.isDeviceInDemoMode(this), isAdmin) |
| 830 | || somethingChanged; |
Fyodor Kupolov | ca060e3 | 2016-06-24 13:01:11 -0700 | [diff] [blame] | 831 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 832 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fyodor Kupolov | ca060e3 | 2016-06-24 13:01:11 -0700 | [diff] [blame] | 833 | Settings.DateTimeSettingsActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 834 | !UserManager.isDeviceInDemoMode(this), isAdmin) |
| 835 | || somethingChanged; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 836 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 837 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 838 | Settings.PrintSettingsActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 839 | pm.hasSystemFeature(PackageManager.FEATURE_PRINTING), isAdmin) |
| 840 | || somethingChanged; |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 841 | |
| 842 | final boolean showDev = mDevelopmentPreferences.getBoolean( |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 843 | DevelopmentSettings.PREF_SHOW, android.os.Build.TYPE.equals("eng")) |
Dan Sandler | 12c4ba4 | 2016-03-28 11:13:40 -0400 | [diff] [blame] | 844 | && !um.hasUserRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES); |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 845 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 846 | Settings.DevelopmentSettingsActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 847 | showDev, isAdmin) |
| 848 | || somethingChanged; |
Dan Sandler | 12c4ba4 | 2016-03-28 11:13:40 -0400 | [diff] [blame] | 849 | |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 850 | // Enable/disable backup settings depending on whether the user is admin. |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 851 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
| 852 | BackupSettingsActivity.class.getName()), true, isAdmin) |
| 853 | || somethingChanged; |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 854 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 855 | somethingChanged = setTileEnabled(new ComponentName(packageName, |
Fan Zhang | 4fcd5ed | 2017-03-10 12:25:35 -0800 | [diff] [blame] | 856 | Settings.WifiDisplaySettingsActivity.class.getName()), |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 857 | WifiDisplaySettings.isAvailable(this), isAdmin) |
| 858 | || somethingChanged; |
Fan Zhang | 4fcd5ed | 2017-03-10 12:25:35 -0800 | [diff] [blame] | 859 | |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 860 | if (UserHandle.MU_ENABLED && !isAdmin) { |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 861 | |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 862 | // When on restricted users, disable all extra categories (but only the settings ones). |
Fan Zhang | 78ab9f9 | 2017-02-27 16:10:05 -0800 | [diff] [blame] | 863 | final List<DashboardCategory> categories = mDashboardFeatureProvider.getAllCategories(); |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 864 | synchronized (categories) { |
| 865 | for (DashboardCategory category : categories) { |
Fan Zhang | 7c8f8a0 | 2017-03-17 12:54:24 -0700 | [diff] [blame] | 866 | final int tileCount = category.getTilesCount(); |
| 867 | for (int i = 0; i < tileCount; i++) { |
| 868 | final ComponentName component = category.getTile(i).intent.getComponent(); |
| 869 | |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 870 | final String name = component.getClassName(); |
| 871 | final boolean isEnabledForRestricted = ArrayUtils.contains( |
| 872 | SettingsGateway.SETTINGS_FOR_RESTRICTED, name); |
| 873 | if (packageName.equals(component.getPackageName()) |
| 874 | && !isEnabledForRestricted) { |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 875 | somethingChanged = setTileEnabled(component, false, isAdmin) |
| 876 | || somethingChanged; |
Fan Zhang | a6986e7 | 2017-03-08 09:24:45 -0800 | [diff] [blame] | 877 | } |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 878 | } |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 879 | } |
Fabrice Di Meglio | 63bbb8e | 2014-04-23 16:44:30 -0700 | [diff] [blame] | 880 | } |
| 881 | } |
Doris Ling | 26bf003 | 2016-06-15 18:16:09 -0700 | [diff] [blame] | 882 | |
Fan Zhang | 224caad | 2017-01-06 11:42:48 -0800 | [diff] [blame] | 883 | // Final step, refresh categories. |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 884 | if (somethingChanged) { |
| 885 | Log.d(LOG_TAG, "Enabled state changed for some tiles, reloading all categories"); |
| 886 | updateCategories(); |
| 887 | } else { |
| 888 | Log.d(LOG_TAG, "No enabled state changed, skipping updateCategory call"); |
| 889 | } |
Jason Monk | 2ebc8a0 | 2015-02-13 15:23:19 -0500 | [diff] [blame] | 890 | } |
| 891 | |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 892 | /** |
| 893 | * @return whether or not the enabled state actually changed. |
| 894 | */ |
| 895 | private boolean setTileEnabled(ComponentName component, boolean enabled, boolean isAdmin) { |
Jason Monk | 5862c1e | 2016-06-07 14:02:33 -0400 | [diff] [blame] | 896 | if (UserHandle.MU_ENABLED && !isAdmin && getPackageName().equals(component.getPackageName()) |
Fan Zhang | 9ec4536 | 2017-01-10 11:55:45 -0800 | [diff] [blame] | 897 | && !ArrayUtils.contains(SettingsGateway.SETTINGS_FOR_RESTRICTED, |
| 898 | component.getClassName())) { |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 899 | enabled = false; |
| 900 | } |
Fan Zhang | aeb94f0 | 2017-07-05 13:46:04 -0700 | [diff] [blame] | 901 | return setTileEnabled(component, enabled); |
Jason Monk | 2ebc8a0 | 2015-02-13 15:23:19 -0500 | [diff] [blame] | 902 | } |
| 903 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 904 | private void getMetaData() { |
| 905 | try { |
| 906 | ActivityInfo ai = getPackageManager().getActivityInfo(getComponentName(), |
| 907 | PackageManager.GET_META_DATA); |
| 908 | if (ai == null || ai.metaData == null) return; |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 909 | mFragmentClass = ai.metaData.getString(META_DATA_KEY_FRAGMENT_CLASS); |
| 910 | } catch (NameNotFoundException nnfe) { |
| 911 | // No recovery |
| 912 | Log.d(LOG_TAG, "Cannot get Metadata for: " + getComponentName().toString()); |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | // give subclasses access to the Next button |
| 917 | public boolean hasNextButton() { |
| 918 | return mNextButton != null; |
| 919 | } |
| 920 | |
| 921 | public Button getNextButton() { |
| 922 | return mNextButton; |
| 923 | } |
| 924 | |
Fabrice Di Meglio | 263bcc8 | 2014-01-17 19:17:58 -0800 | [diff] [blame] | 925 | @Override |
| 926 | public boolean shouldUpRecreateTask(Intent targetIntent) { |
| 927 | return super.shouldUpRecreateTask(new Intent(this, SettingsActivity.class)); |
| 928 | } |
| 929 | |
Jason Monk | d4f03ec | 2016-01-07 16:25:34 -0500 | [diff] [blame] | 930 | public void startSuggestion(Intent intent) { |
Matthew Fritze | 7ac78f2 | 2016-10-03 13:26:07 -0700 | [diff] [blame] | 931 | if (intent == null || ActivityManager.isUserAMonkey()) { |
Matthew Fritze | 703dc60 | 2016-09-30 12:36:27 -0700 | [diff] [blame] | 932 | return; |
| 933 | } |
Matthew Fritze | f265dbc | 2016-10-04 13:39:27 -0700 | [diff] [blame] | 934 | mCurrentSuggestion = intent.getComponent(); |
Jason Monk | d4f03ec | 2016-01-07 16:25:34 -0500 | [diff] [blame] | 935 | startActivityForResult(intent, REQUEST_SUGGESTION); |
| 936 | } |
| 937 | |
| 938 | @Override |
| 939 | protected void onActivityResult(int requestCode, int resultCode, Intent data) { |
| 940 | if (requestCode == REQUEST_SUGGESTION && mCurrentSuggestion != null |
| 941 | && resultCode != RESULT_CANCELED) { |
| 942 | getPackageManager().setComponentEnabledSetting(mCurrentSuggestion, |
| 943 | PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP); |
| 944 | } |
| 945 | super.onActivityResult(requestCode, resultCode, data); |
| 946 | } |
jackqdyulei | 6c355f5 | 2017-03-01 17:37:23 -0800 | [diff] [blame] | 947 | |
| 948 | @VisibleForTesting |
| 949 | Bitmap getBitmapFromXmlResource(int drawableRes) { |
| 950 | Drawable drawable = getResources().getDrawable(drawableRes, getTheme()); |
| 951 | Canvas canvas = new Canvas(); |
| 952 | Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), |
| 953 | drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888); |
| 954 | canvas.setBitmap(bitmap); |
| 955 | drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight()); |
| 956 | drawable.draw(canvas); |
| 957 | |
| 958 | return bitmap; |
| 959 | } |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 960 | |
| 961 | @Override |
| 962 | public void onClick(View v) { |
| 963 | Intent intent = new Intent(this, SearchActivity.class); |
| 964 | startActivity(intent); |
| 965 | } |
| 966 | } |