Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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.launcher3; |
| 18 | |
Sunny Goyal | 4bbf419 | 2014-11-11 12:23:59 -0800 | [diff] [blame] | 19 | import android.annotation.TargetApi; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 20 | import android.app.SearchManager; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 21 | import android.content.ComponentName; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 22 | import android.content.Context; |
| 23 | import android.content.Intent; |
| 24 | import android.content.IntentFilter; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 25 | import android.content.res.Configuration; |
Michael Jurka | 104c456 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 26 | import android.content.res.Resources; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 27 | import android.graphics.Point; |
Sunny Goyal | 4bbf419 | 2014-11-11 12:23:59 -0800 | [diff] [blame] | 28 | import android.os.Build; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 29 | import android.util.DisplayMetrics; |
Daniel Sandler | b9eb286 | 2013-06-14 20:17:30 -0400 | [diff] [blame] | 30 | import android.util.Log; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 31 | import android.view.Display; |
| 32 | import android.view.WindowManager; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 33 | |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 34 | import com.android.launcher3.compat.LauncherAppsCompat; |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 35 | import com.android.launcher3.compat.PackageInstallerCompat; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 36 | import com.android.launcher3.util.Thunk; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 37 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 38 | import java.lang.ref.WeakReference; |
| 39 | |
Winson Chung | 6e1c0d3 | 2013-10-25 15:24:24 -0700 | [diff] [blame] | 40 | public class LauncherAppState implements DeviceProfile.DeviceProfileCallbacks { |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 41 | |
Nilesh Agrawal | 16f3ea8 | 2014-01-09 17:14:01 -0800 | [diff] [blame] | 42 | private final AppFilter mAppFilter; |
| 43 | private final BuildInfo mBuildInfo; |
Adam Cohen | 091440a | 2015-03-18 14:16:05 -0700 | [diff] [blame] | 44 | @Thunk final LauncherModel mModel; |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 45 | private final IconCache mIconCache; |
Sunny Goyal | 5b0e669 | 2015-03-19 14:31:19 -0700 | [diff] [blame] | 46 | private final WidgetPreviewLoader mWidgetCache; |
Sunny Goyal | e0f58d7 | 2014-11-10 18:05:31 -0800 | [diff] [blame] | 47 | |
| 48 | private final boolean mIsScreenLarge; |
| 49 | private final float mScreenDensity; |
| 50 | private final int mLongPressTimeout = 300; |
| 51 | |
Michael Jurka | a6a0547 | 2013-11-13 17:59:46 +0100 | [diff] [blame] | 52 | private boolean mWallpaperChangedSinceLastCheck; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 53 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 54 | private static WeakReference<LauncherProvider> sLauncherProvider; |
| 55 | private static Context sContext; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 56 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 57 | private static LauncherAppState INSTANCE; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 58 | |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 59 | private DynamicGrid mDynamicGrid; |
Adam Cohen | c9735cf | 2015-01-23 16:11:55 -0800 | [diff] [blame] | 60 | private LauncherAccessibilityDelegate mAccessibilityDelegate; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 61 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 62 | public static LauncherAppState getInstance() { |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 63 | if (INSTANCE == null) { |
| 64 | INSTANCE = new LauncherAppState(); |
| 65 | } |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 66 | return INSTANCE; |
| 67 | } |
| 68 | |
Chris Wren | d8fe6de | 2013-10-04 10:42:14 -0400 | [diff] [blame] | 69 | public static LauncherAppState getInstanceNoCreate() { |
| 70 | return INSTANCE; |
| 71 | } |
| 72 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 73 | public Context getContext() { |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 74 | return sContext; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 75 | } |
| 76 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 77 | public static void setApplicationContext(Context context) { |
| 78 | if (sContext != null) { |
Daniel Sandler | e060b0b | 2013-06-27 21:47:55 -0400 | [diff] [blame] | 79 | Log.w(Launcher.TAG, "setApplicationContext called twice! old=" + sContext + " new=" + context); |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 80 | } |
| 81 | sContext = context.getApplicationContext(); |
| 82 | } |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 83 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 84 | private LauncherAppState() { |
| 85 | if (sContext == null) { |
| 86 | throw new IllegalStateException("LauncherAppState inited before app context set"); |
Daniel Sandler | b9eb286 | 2013-06-14 20:17:30 -0400 | [diff] [blame] | 87 | } |
| 88 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 89 | Log.v(Launcher.TAG, "LauncherAppState inited"); |
Daniel Sandler | b9eb286 | 2013-06-14 20:17:30 -0400 | [diff] [blame] | 90 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 91 | if (sContext.getResources().getBoolean(R.bool.debug_memory_enabled)) { |
| 92 | MemoryTracker.startTrackingMe(sContext, "L"); |
| 93 | } |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 94 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 95 | // set sIsScreenXLarge and mScreenDensity *before* creating icon cache |
Michael Jurka | 104c456 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 96 | mIsScreenLarge = isScreenLarge(sContext.getResources()); |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 97 | mScreenDensity = sContext.getResources().getDisplayMetrics().density; |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 98 | mIconCache = new IconCache(sContext); |
Sunny Goyal | 5b0e669 | 2015-03-19 14:31:19 -0700 | [diff] [blame] | 99 | mWidgetCache = new WidgetPreviewLoader(sContext, mIconCache); |
Bjorn Bringert | 1307f63 | 2013-10-03 22:31:03 +0100 | [diff] [blame] | 100 | |
| 101 | mAppFilter = AppFilter.loadByName(sContext.getString(R.string.app_filter_class)); |
Nilesh Agrawal | 16f3ea8 | 2014-01-09 17:14:01 -0800 | [diff] [blame] | 102 | mBuildInfo = BuildInfo.loadByName(sContext.getString(R.string.build_info_class)); |
Bjorn Bringert | 1307f63 | 2013-10-03 22:31:03 +0100 | [diff] [blame] | 103 | mModel = new LauncherModel(this, mIconCache, mAppFilter); |
Sunny Goyal | 2759579 | 2015-03-19 13:18:44 -0700 | [diff] [blame] | 104 | |
| 105 | LauncherAppsCompat.getInstance(sContext).addOnAppsChangedCallback(mModel); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 106 | |
| 107 | // Register intent receivers |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 108 | IntentFilter filter = new IntentFilter(); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 109 | filter.addAction(Intent.ACTION_LOCALE_CHANGED); |
| 110 | filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 111 | filter.addAction(SearchManager.INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 112 | filter.addAction(SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED); |
Sunny Goyal | 957c13f | 2015-05-01 13:02:20 -0700 | [diff] [blame] | 113 | // For handling managed profiles |
| 114 | filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_ADDED); |
| 115 | filter.addAction(LauncherAppsCompat.ACTION_MANAGED_PROFILE_REMOVED); |
| 116 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 117 | sContext.registerReceiver(mModel, filter); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 118 | } |
Kenny Guy | 1317e2d | 2014-05-08 18:52:50 +0100 | [diff] [blame] | 119 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 120 | /** |
| 121 | * Call from Application.onTerminate(), which is not guaranteed to ever be called. |
| 122 | */ |
| 123 | public void onTerminate() { |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 124 | sContext.unregisterReceiver(mModel); |
Kenny Guy | 1317e2d | 2014-05-08 18:52:50 +0100 | [diff] [blame] | 125 | final LauncherAppsCompat launcherApps = LauncherAppsCompat.getInstance(sContext); |
Kenny Guy | c2bd810 | 2014-06-30 12:30:31 +0100 | [diff] [blame] | 126 | launcherApps.removeOnAppsChangedCallback(mModel); |
Sunny Goyal | 4390ace | 2014-10-13 11:33:11 -0700 | [diff] [blame] | 127 | PackageInstallerCompat.getInstance(sContext).onStop(); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /** |
Sunny Goyal | 1d4a2df | 2015-03-30 11:11:46 -0700 | [diff] [blame] | 131 | * Reloads the workspace items from the DB and re-binds the workspace. This should generally |
| 132 | * not be called as DB updates are automatically followed by UI update |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 133 | */ |
Sunny Goyal | 1d4a2df | 2015-03-30 11:11:46 -0700 | [diff] [blame] | 134 | public void reloadWorkspace() { |
| 135 | mModel.resetLoadedState(false, true); |
| 136 | mModel.startLoaderFromBackground(); |
| 137 | } |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 138 | |
| 139 | LauncherModel setLauncher(Launcher launcher) { |
| 140 | mModel.initialize(launcher); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 141 | mAccessibilityDelegate = ((launcher != null) && Utilities.isLmpOrAbove()) ? |
| 142 | new LauncherAccessibilityDelegate(launcher) : null; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 143 | return mModel; |
| 144 | } |
| 145 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 146 | public LauncherAccessibilityDelegate getAccessibilityDelegate() { |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 147 | return mAccessibilityDelegate; |
| 148 | } |
| 149 | |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 150 | public IconCache getIconCache() { |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 151 | return mIconCache; |
| 152 | } |
| 153 | |
Sunny Goyal | 18bf8e2 | 2015-04-08 18:13:46 -0700 | [diff] [blame] | 154 | public LauncherModel getModel() { |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 155 | return mModel; |
| 156 | } |
| 157 | |
Bjorn Bringert | 1307f63 | 2013-10-03 22:31:03 +0100 | [diff] [blame] | 158 | boolean shouldShowAppOrWidgetProvider(ComponentName componentName) { |
| 159 | return mAppFilter == null || mAppFilter.shouldShowApp(componentName); |
| 160 | } |
| 161 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 162 | static void setLauncherProvider(LauncherProvider provider) { |
| 163 | sLauncherProvider = new WeakReference<LauncherProvider>(provider); |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 164 | } |
| 165 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 166 | static LauncherProvider getLauncherProvider() { |
| 167 | return sLauncherProvider.get(); |
Daniel Sandler | 924b993 | 2013-06-12 00:38:25 -0400 | [diff] [blame] | 168 | } |
| 169 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 170 | public static String getSharedPreferencesKey() { |
Helena Josol | 28db280 | 2014-10-09 17:04:09 +0100 | [diff] [blame] | 171 | return LauncherFiles.SHARED_PREFERENCES_KEY; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 172 | } |
| 173 | |
Sunny Goyal | 4bbf419 | 2014-11-11 12:23:59 -0800 | [diff] [blame] | 174 | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 175 | DeviceProfile initDynamicGrid(Context context) { |
Chris Wren | b02e611 | 2014-11-24 16:57:54 -0500 | [diff] [blame] | 176 | mDynamicGrid = createDynamicGrid(context, mDynamicGrid); |
| 177 | mDynamicGrid.getDeviceProfile().addCallback(this); |
| 178 | return mDynamicGrid.getDeviceProfile(); |
| 179 | } |
| 180 | |
| 181 | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) |
| 182 | static DynamicGrid createDynamicGrid(Context context, DynamicGrid dynamicGrid) { |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 183 | // Determine the dynamic grid properties |
| 184 | WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE); |
| 185 | Display display = wm.getDefaultDisplay(); |
| 186 | |
| 187 | Point realSize = new Point(); |
| 188 | display.getRealSize(realSize); |
| 189 | DisplayMetrics dm = new DisplayMetrics(); |
| 190 | display.getMetrics(dm); |
| 191 | |
Chris Wren | b02e611 | 2014-11-24 16:57:54 -0500 | [diff] [blame] | 192 | if (dynamicGrid == null) { |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 193 | Point smallestSize = new Point(); |
| 194 | Point largestSize = new Point(); |
| 195 | display.getCurrentSizeRange(smallestSize, largestSize); |
| 196 | |
Chris Wren | b02e611 | 2014-11-24 16:57:54 -0500 | [diff] [blame] | 197 | dynamicGrid = new DynamicGrid(context, |
Winson Chung | f7d4585 | 2013-10-10 18:57:15 -0700 | [diff] [blame] | 198 | context.getResources(), |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 199 | Math.min(smallestSize.x, smallestSize.y), |
| 200 | Math.min(largestSize.x, largestSize.y), |
| 201 | realSize.x, realSize.y, |
| 202 | dm.widthPixels, dm.heightPixels); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 205 | // Update the icon size |
Chris Wren | b02e611 | 2014-11-24 16:57:54 -0500 | [diff] [blame] | 206 | DeviceProfile grid = dynamicGrid.getDeviceProfile(); |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 207 | grid.updateFromConfiguration(context, context.getResources(), |
| 208 | realSize.x, realSize.y, |
| 209 | dm.widthPixels, dm.heightPixels); |
Chris Wren | b02e611 | 2014-11-24 16:57:54 -0500 | [diff] [blame] | 210 | return dynamicGrid; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 211 | } |
Chris Wren | b02e611 | 2014-11-24 16:57:54 -0500 | [diff] [blame] | 212 | |
Winson Chung | b380024 | 2013-10-24 11:01:54 -0700 | [diff] [blame] | 213 | public DynamicGrid getDynamicGrid() { |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 214 | return mDynamicGrid; |
| 215 | } |
| 216 | |
Sunny Goyal | 5b0e669 | 2015-03-19 14:31:19 -0700 | [diff] [blame] | 217 | public WidgetPreviewLoader getWidgetCache() { |
| 218 | return mWidgetCache; |
| 219 | } |
| 220 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 221 | public boolean isScreenLarge() { |
| 222 | return mIsScreenLarge; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 223 | } |
| 224 | |
Michael Jurka | 104c456 | 2013-07-08 18:03:46 -0700 | [diff] [blame] | 225 | // Need a version that doesn't require an instance of LauncherAppState for the wallpaper picker |
| 226 | public static boolean isScreenLarge(Resources res) { |
| 227 | return res.getBoolean(R.bool.is_large_tablet); |
| 228 | } |
| 229 | |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 230 | public static boolean isScreenLandscape(Context context) { |
| 231 | return context.getResources().getConfiguration().orientation == |
| 232 | Configuration.ORIENTATION_LANDSCAPE; |
| 233 | } |
| 234 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 235 | public float getScreenDensity() { |
| 236 | return mScreenDensity; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 237 | } |
| 238 | |
Daniel Sandler | e4f9891 | 2013-06-25 15:13:26 -0400 | [diff] [blame] | 239 | public int getLongPressTimeout() { |
| 240 | return mLongPressTimeout; |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 241 | } |
Winson Chung | 6e1c0d3 | 2013-10-25 15:24:24 -0700 | [diff] [blame] | 242 | |
Michael Jurka | a6a0547 | 2013-11-13 17:59:46 +0100 | [diff] [blame] | 243 | public void onWallpaperChanged() { |
| 244 | mWallpaperChangedSinceLastCheck = true; |
| 245 | } |
| 246 | |
| 247 | public boolean hasWallpaperChangedSinceLastCheck() { |
| 248 | boolean result = mWallpaperChangedSinceLastCheck; |
| 249 | mWallpaperChangedSinceLastCheck = false; |
| 250 | return result; |
| 251 | } |
| 252 | |
Winson Chung | 6e1c0d3 | 2013-10-25 15:24:24 -0700 | [diff] [blame] | 253 | @Override |
| 254 | public void onAvailableSizeChanged(DeviceProfile grid) { |
| 255 | Utilities.setIconSize(grid.iconSizePx); |
| 256 | } |
Nilesh Agrawal | 16f3ea8 | 2014-01-09 17:14:01 -0800 | [diff] [blame] | 257 | |
Jorim Jaggi | eedb00a | 2014-01-13 13:45:07 -0800 | [diff] [blame] | 258 | public static boolean isDogfoodBuild() { |
| 259 | return getInstance().mBuildInfo.isDogfoodBuild(); |
| 260 | } |
Daniel Sandler | cc8befa | 2013-06-11 14:45:48 -0400 | [diff] [blame] | 261 | } |