blob: 4f5d83599e4d4f58012926a1b56b7dcadbee5374 [file] [log] [blame]
Winson Chung785d2eb2011-04-14 16:08:02 -07001/*
2 * Copyright (C) 2011 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
17package com.android.launcher2;
18
Winson Chung55b65502011-05-26 12:03:43 -070019import android.animation.AnimatorSet;
Winson Chung4b576be2011-04-27 17:40:20 -070020import android.animation.ObjectAnimator;
Winson Chungd2e87b32011-06-02 10:53:07 -070021import android.animation.ValueAnimator;
Winson Chung785d2eb2011-04-14 16:08:02 -070022import android.appwidget.AppWidgetManager;
23import android.appwidget.AppWidgetProviderInfo;
24import android.content.ComponentName;
25import android.content.Context;
26import android.content.Intent;
Winson Chung46af2e82011-05-09 16:00:53 -070027import android.content.pm.ActivityInfo;
Winson Chung785d2eb2011-04-14 16:08:02 -070028import android.content.pm.PackageManager;
29import android.content.pm.ResolveInfo;
Winson Chungf0ea4d32011-06-06 14:27:16 -070030import android.content.res.Configuration;
Winson Chung785d2eb2011-04-14 16:08:02 -070031import android.content.res.Resources;
32import android.content.res.TypedArray;
33import android.graphics.Bitmap;
Winson Chung5fc72b32011-10-11 17:53:58 -070034import android.graphics.Bitmap.Config;
Winson Chung785d2eb2011-04-14 16:08:02 -070035import android.graphics.Canvas;
Winson Chung70fc4382011-08-08 15:31:33 -070036import android.graphics.PorterDuff;
Winson Chung785d2eb2011-04-14 16:08:02 -070037import android.graphics.Rect;
Winson Chung5fc72b32011-10-11 17:53:58 -070038import android.graphics.RectF;
Winson Chung785d2eb2011-04-14 16:08:02 -070039import android.graphics.drawable.Drawable;
Winson Chungb44b5242011-06-13 11:32:14 -070040import android.os.AsyncTask;
41import android.os.Process;
Winson Chung785d2eb2011-04-14 16:08:02 -070042import android.util.AttributeSet;
43import android.util.Log;
Winson Chung72d8b392011-07-29 13:56:44 -070044import android.view.Gravity;
Winson Chung785d2eb2011-04-14 16:08:02 -070045import android.view.LayoutInflater;
Winson Chungde1af762011-07-21 16:44:07 -070046import android.view.MotionEvent;
Winson Chung785d2eb2011-04-14 16:08:02 -070047import android.view.View;
Winson Chung63257c12011-05-05 17:06:13 -070048import android.view.ViewGroup;
Winson Chung55b65502011-05-26 12:03:43 -070049import android.view.animation.AccelerateInterpolator;
Winson Chungfd3385f2011-06-15 19:51:24 -070050import android.widget.GridLayout;
Winson Chung785d2eb2011-04-14 16:08:02 -070051import android.widget.ImageView;
Winson Chung55b65502011-05-26 12:03:43 -070052import android.widget.Toast;
Winson Chung785d2eb2011-04-14 16:08:02 -070053
54import com.android.launcher.R;
Adam Cohenc0dcf592011-06-01 15:30:43 -070055import com.android.launcher2.DropTarget.DragObject;
56
57import java.util.ArrayList;
58import java.util.Collections;
59import java.util.Iterator;
60import java.util.List;
Winson Chung785d2eb2011-04-14 16:08:02 -070061
Winson Chungb44b5242011-06-13 11:32:14 -070062/**
63 * A simple callback interface which also provides the results of the task.
64 */
65interface AsyncTaskCallback {
66 void run(AppsCustomizeAsyncTask task, AsyncTaskPageData data);
67}
Winson Chung4e076542011-06-23 13:04:10 -070068
Winson Chungb44b5242011-06-13 11:32:14 -070069/**
70 * The data needed to perform either of the custom AsyncTasks.
71 */
72class AsyncTaskPageData {
Winson Chung875de7e2011-06-28 14:25:17 -070073 enum Type {
74 LoadWidgetPreviewData,
75 LoadHolographicIconsData
76 }
77
Winson Chungb44b5242011-06-13 11:32:14 -070078 AsyncTaskPageData(int p, ArrayList<Object> l, ArrayList<Bitmap> si, AsyncTaskCallback bgR,
79 AsyncTaskCallback postR) {
80 page = p;
81 items = l;
Winson Chung4e076542011-06-23 13:04:10 -070082 sourceImages = si;
83 generatedImages = new ArrayList<Bitmap>();
Winson Chungb44b5242011-06-13 11:32:14 -070084 cellWidth = cellHeight = -1;
85 doInBackgroundCallback = bgR;
86 postExecuteCallback = postR;
87 }
Winson Chungd2945262011-06-24 15:22:14 -070088 AsyncTaskPageData(int p, ArrayList<Object> l, int cw, int ch, int ccx, AsyncTaskCallback bgR,
Winson Chungb44b5242011-06-13 11:32:14 -070089 AsyncTaskCallback postR) {
90 page = p;
91 items = l;
Winson Chung4e076542011-06-23 13:04:10 -070092 generatedImages = new ArrayList<Bitmap>();
Winson Chungb44b5242011-06-13 11:32:14 -070093 cellWidth = cw;
94 cellHeight = ch;
Winson Chungd2945262011-06-24 15:22:14 -070095 cellCountX = ccx;
Winson Chungb44b5242011-06-13 11:32:14 -070096 doInBackgroundCallback = bgR;
97 postExecuteCallback = postR;
98 }
Winson Chung09945932011-09-20 14:22:40 -070099 void cleanup(boolean cancelled) {
100 // Clean up any references to source/generated bitmaps
101 if (sourceImages != null) {
102 if (cancelled) {
103 for (Bitmap b : sourceImages) {
104 b.recycle();
105 }
106 }
107 sourceImages.clear();
108 }
109 if (generatedImages != null) {
110 if (cancelled) {
111 for (Bitmap b : generatedImages) {
112 b.recycle();
113 }
114 }
115 generatedImages.clear();
116 }
117 }
Winson Chungb44b5242011-06-13 11:32:14 -0700118 int page;
119 ArrayList<Object> items;
Winson Chung4e076542011-06-23 13:04:10 -0700120 ArrayList<Bitmap> sourceImages;
121 ArrayList<Bitmap> generatedImages;
Winson Chungb44b5242011-06-13 11:32:14 -0700122 int cellWidth;
123 int cellHeight;
Winson Chungd2945262011-06-24 15:22:14 -0700124 int cellCountX;
Winson Chungb44b5242011-06-13 11:32:14 -0700125 AsyncTaskCallback doInBackgroundCallback;
126 AsyncTaskCallback postExecuteCallback;
127}
Winson Chung4e076542011-06-23 13:04:10 -0700128
Winson Chungb44b5242011-06-13 11:32:14 -0700129/**
130 * A generic template for an async task used in AppsCustomize.
131 */
132class AppsCustomizeAsyncTask extends AsyncTask<AsyncTaskPageData, Void, AsyncTaskPageData> {
Adam Cohen0cd3b642011-10-14 14:58:00 -0700133 AppsCustomizeAsyncTask(int p, AsyncTaskPageData.Type ty) {
Winson Chungb44b5242011-06-13 11:32:14 -0700134 page = p;
Winson Chungb44b5242011-06-13 11:32:14 -0700135 threadPriority = Process.THREAD_PRIORITY_DEFAULT;
Winson Chung875de7e2011-06-28 14:25:17 -0700136 dataType = ty;
Winson Chungb44b5242011-06-13 11:32:14 -0700137 }
138 @Override
139 protected AsyncTaskPageData doInBackground(AsyncTaskPageData... params) {
140 if (params.length != 1) return null;
141 // Load each of the widget previews in the background
142 params[0].doInBackgroundCallback.run(this, params[0]);
143 return params[0];
144 }
145 @Override
146 protected void onPostExecute(AsyncTaskPageData result) {
147 // All the widget previews are loaded, so we can just callback to inflate the page
148 result.postExecuteCallback.run(this, result);
149 }
150
151 void setThreadPriority(int p) {
152 threadPriority = p;
153 }
154 void syncThreadPriority() {
155 Process.setThreadPriority(threadPriority);
156 }
157
158 // The page that this async task is associated with
Winson Chung875de7e2011-06-28 14:25:17 -0700159 AsyncTaskPageData.Type dataType;
Winson Chungb44b5242011-06-13 11:32:14 -0700160 int page;
Winson Chungb44b5242011-06-13 11:32:14 -0700161 int threadPriority;
162}
Winson Chungb44b5242011-06-13 11:32:14 -0700163
164/**
165 * The Apps/Customize page that displays all the applications, widgets, and shortcuts.
166 */
Winson Chung785d2eb2011-04-14 16:08:02 -0700167public class AppsCustomizePagedView extends PagedViewWithDraggableItems implements
168 AllAppsView, View.OnClickListener, DragSource {
169 static final String LOG_TAG = "AppsCustomizePagedView";
170
171 /**
172 * The different content types that this paged view can show.
173 */
174 public enum ContentType {
175 Applications,
Winson Chung6a26e5b2011-05-26 14:36:06 -0700176 Widgets
Winson Chung785d2eb2011-04-14 16:08:02 -0700177 }
178
179 // Refs
180 private Launcher mLauncher;
181 private DragController mDragController;
182 private final LayoutInflater mLayoutInflater;
183 private final PackageManager mPackageManager;
184
Winson Chung5afbf7b2011-07-25 11:53:08 -0700185 // Save and Restore
186 private int mSaveInstanceStateItemIndex = -1;
Winson Chung5afbf7b2011-07-25 11:53:08 -0700187
Winson Chung785d2eb2011-04-14 16:08:02 -0700188 // Content
Winson Chung785d2eb2011-04-14 16:08:02 -0700189 private ArrayList<ApplicationInfo> mApps;
Winson Chungd2945262011-06-24 15:22:14 -0700190 private ArrayList<Object> mWidgets;
Winson Chung1ed747a2011-05-03 16:18:34 -0700191
Winson Chung7d7541e2011-09-16 20:14:36 -0700192 // Cling
193 private int mClingFocusedX;
194 private int mClingFocusedY;
195
Winson Chung1ed747a2011-05-03 16:18:34 -0700196 // Caching
Winson Chungb44b5242011-06-13 11:32:14 -0700197 private Canvas mCanvas;
Winson Chung1ed747a2011-05-03 16:18:34 -0700198 private Drawable mDefaultWidgetBackground;
Winson Chung4dbea792011-05-05 14:21:32 -0700199 private IconCache mIconCache;
Winson Chung70fc4382011-08-08 15:31:33 -0700200 private int mDragViewMultiplyColor;
Winson Chung785d2eb2011-04-14 16:08:02 -0700201
202 // Dimens
203 private int mContentWidth;
Winson Chungd2945262011-06-24 15:22:14 -0700204 private int mAppIconSize;
Winson Chung4b576be2011-04-27 17:40:20 -0700205 private int mMaxWidgetSpan, mMinWidgetSpan;
Winson Chung4b576be2011-04-27 17:40:20 -0700206 private int mWidgetCountX, mWidgetCountY;
Winson Chungd2945262011-06-24 15:22:14 -0700207 private int mWidgetWidthGap, mWidgetHeightGap;
Winson Chung1ed747a2011-05-03 16:18:34 -0700208 private final int mWidgetPreviewIconPaddedDimension;
209 private final float sWidgetPreviewIconPaddingPercentage = 0.25f;
Winson Chung785d2eb2011-04-14 16:08:02 -0700210 private PagedViewCellLayout mWidgetSpacingLayout;
Adam Cohen0cd3b642011-10-14 14:58:00 -0700211 private int mNumAppsPages;
212 private int mNumWidgetPages;
Winson Chung785d2eb2011-04-14 16:08:02 -0700213
Adam Cohen22f823d2011-09-01 17:22:18 -0700214 // Relating to the scroll and overscroll effects
215 Workspace.ZInterpolator mZInterpolator = new Workspace.ZInterpolator(0.5f);
Adam Cohencff6af82011-09-13 14:51:53 -0700216 private static float CAMERA_DISTANCE = 6500;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700217 private static float TRANSITION_SCALE_FACTOR = 0.74f;
Adam Cohencff6af82011-09-13 14:51:53 -0700218 private static float TRANSITION_PIVOT = 0.65f;
219 private static float TRANSITION_MAX_ROTATION = 22;
220 private static final boolean PERFORM_OVERSCROLL_ROTATION = true;
Adam Cohenb5ba0972011-09-07 18:02:31 -0700221 private AccelerateInterpolator mAlphaInterpolator = new AccelerateInterpolator(0.9f);
Adam Cohen22f823d2011-09-01 17:22:18 -0700222
Winson Chungb44b5242011-06-13 11:32:14 -0700223 // Previews & outlines
224 ArrayList<AppsCustomizeAsyncTask> mRunningTasks;
225 private HolographicOutlineHelper mHolographicOutlineHelper;
Winson Chungf314b0e2011-08-16 11:54:27 -0700226 private static final int sPageSleepDelay = 200;
Winson Chung4b576be2011-04-27 17:40:20 -0700227
Winson Chung785d2eb2011-04-14 16:08:02 -0700228 public AppsCustomizePagedView(Context context, AttributeSet attrs) {
229 super(context, attrs);
230 mLayoutInflater = LayoutInflater.from(context);
231 mPackageManager = context.getPackageManager();
Winson Chung785d2eb2011-04-14 16:08:02 -0700232 mApps = new ArrayList<ApplicationInfo>();
Winson Chung1ed747a2011-05-03 16:18:34 -0700233 mWidgets = new ArrayList<Object>();
Winson Chung4dbea792011-05-05 14:21:32 -0700234 mIconCache = ((LauncherApplication) context.getApplicationContext()).getIconCache();
Winson Chungb44b5242011-06-13 11:32:14 -0700235 mHolographicOutlineHelper = new HolographicOutlineHelper();
236 mCanvas = new Canvas();
237 mRunningTasks = new ArrayList<AppsCustomizeAsyncTask>();
Winson Chung1ed747a2011-05-03 16:18:34 -0700238
239 // Save the default widget preview background
240 Resources resources = context.getResources();
Winson Chung967289b2011-06-30 18:09:30 -0700241 mDefaultWidgetBackground = resources.getDrawable(R.drawable.default_widget_preview_holo);
Winson Chung70fc4382011-08-08 15:31:33 -0700242 mAppIconSize = resources.getDimensionPixelSize(R.dimen.app_icon_size);
243 mDragViewMultiplyColor = resources.getColor(R.color.drag_view_multiply_color);
Winson Chung785d2eb2011-04-14 16:08:02 -0700244
245 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.PagedView, 0, 0);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700246 // TODO-APPS_CUSTOMIZE: remove these unnecessary attrs after
Winson Chung785d2eb2011-04-14 16:08:02 -0700247 mCellCountX = a.getInt(R.styleable.PagedView_cellCountX, 6);
248 mCellCountY = a.getInt(R.styleable.PagedView_cellCountY, 4);
249 a.recycle();
Winson Chung4b576be2011-04-27 17:40:20 -0700250 a = context.obtainStyledAttributes(attrs, R.styleable.AppsCustomizePagedView, 0, 0);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700251 mWidgetWidthGap =
252 a.getDimensionPixelSize(R.styleable.AppsCustomizePagedView_widgetCellWidthGap, 0);
253 mWidgetHeightGap =
254 a.getDimensionPixelSize(R.styleable.AppsCustomizePagedView_widgetCellHeightGap, 0);
Winson Chung4b576be2011-04-27 17:40:20 -0700255 mWidgetCountX = a.getInt(R.styleable.AppsCustomizePagedView_widgetCountX, 2);
256 mWidgetCountY = a.getInt(R.styleable.AppsCustomizePagedView_widgetCountY, 2);
Winson Chung7d7541e2011-09-16 20:14:36 -0700257 mClingFocusedX = a.getInt(R.styleable.AppsCustomizePagedView_clingFocusedX, 0);
258 mClingFocusedY = a.getInt(R.styleable.AppsCustomizePagedView_clingFocusedY, 0);
Winson Chung4b576be2011-04-27 17:40:20 -0700259 a.recycle();
Winson Chungf0ea4d32011-06-06 14:27:16 -0700260 mWidgetSpacingLayout = new PagedViewCellLayout(getContext());
Winson Chung4b576be2011-04-27 17:40:20 -0700261
262 // The max widget span is the length N, such that NxN is the largest bounds that the widget
263 // preview can be before applying the widget scaling
264 mMinWidgetSpan = 1;
265 mMaxWidgetSpan = 3;
Winson Chung1ed747a2011-05-03 16:18:34 -0700266
267 // The padding on the non-matched dimension for the default widget preview icons
268 // (top + bottom)
Winson Chung1ed747a2011-05-03 16:18:34 -0700269 mWidgetPreviewIconPaddedDimension =
Winson Chungd2945262011-06-24 15:22:14 -0700270 (int) (mAppIconSize * (1 + (2 * sWidgetPreviewIconPaddingPercentage)));
Winson Chung54c725c2011-08-03 12:03:40 -0700271 mFadeInAdjacentScreens = LauncherApplication.isScreenLarge();
Winson Chung785d2eb2011-04-14 16:08:02 -0700272 }
273
274 @Override
275 protected void init() {
276 super.init();
Winson Chung5fc72b32011-10-11 17:53:58 -0700277 mCenterPagesVertically = true;
Winson Chung785d2eb2011-04-14 16:08:02 -0700278
279 Context context = getContext();
280 Resources r = context.getResources();
281 setDragSlopeThreshold(r.getInteger(R.integer.config_appsCustomizeDragSlopeThreshold)/100f);
282 }
283
Winson Chungf0ea4d32011-06-06 14:27:16 -0700284 @Override
Michael Jurkad771c962011-08-09 15:00:48 -0700285 protected void onUnhandledTap(MotionEvent ev) {
286 if (LauncherApplication.isScreenLarge()) {
Winson Chungde1af762011-07-21 16:44:07 -0700287 // Dismiss AppsCustomize if we tap
288 mLauncher.showWorkspace(true);
289 }
Winson Chungf0ea4d32011-06-06 14:27:16 -0700290 }
291
Winson Chung5afbf7b2011-07-25 11:53:08 -0700292 /** Returns the item index of the center item on this page so that we can restore to this
293 * item index when we rotate. */
294 private int getMiddleComponentIndexOnCurrentPage() {
295 int i = -1;
296 if (getPageCount() > 0) {
297 int currentPage = getCurrentPage();
Adam Cohen0cd3b642011-10-14 14:58:00 -0700298 if (currentPage < mNumAppsPages) {
Adam Cohen22f823d2011-09-01 17:22:18 -0700299 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(currentPage);
Winson Chung5afbf7b2011-07-25 11:53:08 -0700300 PagedViewCellLayoutChildren childrenLayout = layout.getChildrenLayout();
301 int numItemsPerPage = mCellCountX * mCellCountY;
302 int childCount = childrenLayout.getChildCount();
303 if (childCount > 0) {
304 i = (currentPage * numItemsPerPage) + (childCount / 2);
Adam Cohen0cd3b642011-10-14 14:58:00 -0700305 }
306 } else {
307 int numApps = mApps.size();
Adam Cohen22f823d2011-09-01 17:22:18 -0700308 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(currentPage);
Winson Chung5afbf7b2011-07-25 11:53:08 -0700309 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
310 int childCount = layout.getChildCount();
311 if (childCount > 0) {
Adam Cohen0cd3b642011-10-14 14:58:00 -0700312 i = numApps +
313 ((currentPage - mNumAppsPages) * numItemsPerPage) + (childCount / 2);
314 }
Winson Chung5afbf7b2011-07-25 11:53:08 -0700315 }
316 }
317 return i;
318 }
319
320 /** Get the index of the item to restore to if we need to restore the current page. */
321 int getSaveInstanceStateIndex() {
322 if (mSaveInstanceStateItemIndex == -1) {
323 mSaveInstanceStateItemIndex = getMiddleComponentIndexOnCurrentPage();
324 }
325 return mSaveInstanceStateItemIndex;
326 }
327
328 /** Returns the page in the current orientation which is expected to contain the specified
329 * item index. */
330 int getPageForComponent(int index) {
Adam Cohen0cd3b642011-10-14 14:58:00 -0700331 if (index < 0) return 0;
332
333 if (index < mApps.size()) {
Winson Chung5afbf7b2011-07-25 11:53:08 -0700334 int numItemsPerPage = mCellCountX * mCellCountY;
335 return (index / numItemsPerPage);
Adam Cohen0cd3b642011-10-14 14:58:00 -0700336 } else {
Winson Chung5afbf7b2011-07-25 11:53:08 -0700337 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
Adam Cohen0cd3b642011-10-14 14:58:00 -0700338 return mNumAppsPages + ((index - mApps.size()) / numItemsPerPage);
339 }
Winson Chung5afbf7b2011-07-25 11:53:08 -0700340 }
341
Winson Chungf0ea4d32011-06-06 14:27:16 -0700342 /**
343 * This differs from isDataReady as this is the test done if isDataReady is not set.
344 */
345 private boolean testDataReady() {
Winson Chungfd3385f2011-06-15 19:51:24 -0700346 // We only do this test once, and we default to the Applications page, so we only really
347 // have to wait for there to be apps.
Adam Cohen0cd3b642011-10-14 14:58:00 -0700348 // TODO: What if one of them is validly empty
349 return !mApps.isEmpty() && !mWidgets.isEmpty();
Winson Chungf0ea4d32011-06-06 14:27:16 -0700350 }
351
Winson Chung5afbf7b2011-07-25 11:53:08 -0700352 /** Restores the page for an item at the specified index */
353 void restorePageForIndex(int index) {
354 if (index < 0) return;
Adam Cohen0cd3b642011-10-14 14:58:00 -0700355 mSaveInstanceStateItemIndex = index;
Winson Chung5afbf7b2011-07-25 11:53:08 -0700356 }
357
Winson Chungf0ea4d32011-06-06 14:27:16 -0700358 protected void onDataReady(int width, int height) {
359 // Note that we transpose the counts in portrait so that we get a similar layout
360 boolean isLandscape = getResources().getConfiguration().orientation ==
361 Configuration.ORIENTATION_LANDSCAPE;
362 int maxCellCountX = Integer.MAX_VALUE;
363 int maxCellCountY = Integer.MAX_VALUE;
364 if (LauncherApplication.isScreenLarge()) {
365 maxCellCountX = (isLandscape ? LauncherModel.getCellCountX() :
366 LauncherModel.getCellCountY());
367 maxCellCountY = (isLandscape ? LauncherModel.getCellCountY() :
368 LauncherModel.getCellCountX());
369 }
370
371 // Now that the data is ready, we can calculate the content width, the number of cells to
372 // use for each page
373 mWidgetSpacingLayout.setGap(mPageLayoutWidthGap, mPageLayoutHeightGap);
374 mWidgetSpacingLayout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
375 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
376 mWidgetSpacingLayout.calculateCellCount(width, height, maxCellCountX, maxCellCountY);
377 mCellCountX = mWidgetSpacingLayout.getCellCountX();
378 mCellCountY = mWidgetSpacingLayout.getCellCountY();
Adam Cohen0cd3b642011-10-14 14:58:00 -0700379 mNumWidgetPages = (int) Math.ceil(mWidgets.size() /
380 (float) (mWidgetCountX * mWidgetCountY));
381 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
Winson Chung5a808352011-06-27 19:08:49 -0700382
Winson Chungdb1138b2011-06-30 14:39:35 -0700383 // Force a measure to update recalculate the gaps
384 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
385 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
386 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700387 mContentWidth = mWidgetSpacingLayout.getContentWidth();
Adam Cohen0cd3b642011-10-14 14:58:00 -0700388
389 // Restore the page
390 int page = getPageForComponent(mSaveInstanceStateItemIndex);
391 invalidatePageData(Math.max(0, page));
Winson Chung7d7541e2011-09-16 20:14:36 -0700392
393 int[] offset = new int[2];
394 int[] pos = mWidgetSpacingLayout.estimateCellPosition(mClingFocusedX, mClingFocusedY);
395 mLauncher.getDragLayer().getLocationInDragLayer(this, offset);
396 pos[0] += (getMeasuredWidth() - mWidgetSpacingLayout.getMeasuredWidth()) / 2 + offset[0];
397 pos[1] += (getMeasuredHeight() - mWidgetSpacingLayout.getMeasuredHeight()) / 2 + offset[1];
398 mLauncher.showFirstRunAllAppsCling(pos);
399
Winson Chungf0ea4d32011-06-06 14:27:16 -0700400 }
401
402 @Override
403 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
404 int width = MeasureSpec.getSize(widthMeasureSpec);
405 int height = MeasureSpec.getSize(heightMeasureSpec);
406 if (!isDataReady()) {
407 if (testDataReady()) {
408 setDataIsReady();
409 setMeasuredDimension(width, height);
410 onDataReady(width, height);
411 }
412 }
413
414 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
415 }
416
Winson Chung34efdaf2011-05-24 14:19:56 -0700417 /** Removes and returns the ResolveInfo with the specified ComponentName */
418 private ResolveInfo removeResolveInfoWithComponentName(List<ResolveInfo> list,
419 ComponentName cn) {
420 Iterator<ResolveInfo> iter = list.iterator();
421 while (iter.hasNext()) {
422 ResolveInfo rinfo = iter.next();
423 ActivityInfo info = rinfo.activityInfo;
424 ComponentName c = new ComponentName(info.packageName, info.name);
425 if (c.equals(cn)) {
426 iter.remove();
427 return rinfo;
428 }
429 }
430 return null;
431 }
432
Winson Chung785d2eb2011-04-14 16:08:02 -0700433 public void onPackagesUpdated() {
Adam Cohenb0fa3522011-08-17 16:10:46 -0700434 // TODO: this isn't ideal, but we actually need to delay here. This call is triggered
435 // by a broadcast receiver, and in order for it to work correctly, we need to know that
436 // the AppWidgetService has already received and processed the same broadcast. Since there
437 // is no guarantee about ordering of broadcast receipt, we just delay here. Ideally,
438 // we should have a more precise way of ensuring the AppWidgetService is up to date.
439 postDelayed(new Runnable() {
440 public void run() {
441 updatePackages();
442 }
443 }, 500);
444 }
445
446 public void updatePackages() {
Winson Chung1ed747a2011-05-03 16:18:34 -0700447 // Get the list of widgets and shortcuts
Winson Chung6a3fd3f2011-08-02 14:03:26 -0700448 boolean wasEmpty = mWidgets.isEmpty();
Winson Chung1ed747a2011-05-03 16:18:34 -0700449 mWidgets.clear();
Winson Chungf0ea4d32011-06-06 14:27:16 -0700450 List<AppWidgetProviderInfo> widgets =
451 AppWidgetManager.getInstance(mLauncher).getInstalledProviders();
Winson Chungf0ea4d32011-06-06 14:27:16 -0700452 Intent shortcutsIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
453 List<ResolveInfo> shortcuts = mPackageManager.queryIntentActivities(shortcutsIntent, 0);
Winson Chungf0ea4d32011-06-06 14:27:16 -0700454 mWidgets.addAll(widgets);
Winson Chung6a3fd3f2011-08-02 14:03:26 -0700455 mWidgets.addAll(shortcuts);
456 Collections.sort(mWidgets,
457 new LauncherModel.WidgetAndShortcutNameComparator(mPackageManager));
Winson Chung785d2eb2011-04-14 16:08:02 -0700458
Winson Chung875de7e2011-06-28 14:25:17 -0700459 if (wasEmpty) {
460 // The next layout pass will trigger data-ready if both widgets and apps are set, so request
461 // a layout to do this test and invalidate the page data when ready.
462 if (testDataReady()) requestLayout();
463 } else {
Adam Cohen0cd3b642011-10-14 14:58:00 -0700464 cancelAllTasks();
Winson Chung875de7e2011-06-28 14:25:17 -0700465 invalidatePageData();
466 }
Winson Chung4b576be2011-04-27 17:40:20 -0700467 }
468
469 @Override
470 public void onClick(View v) {
Adam Cohenfc53cd22011-07-20 15:45:11 -0700471 // When we have exited all apps or are in transition, disregard clicks
472 if (!mLauncher.isAllAppsCustomizeOpen() ||
473 mLauncher.getWorkspace().isSwitchingState()) return;
474
Winson Chung4b576be2011-04-27 17:40:20 -0700475 if (v instanceof PagedViewIcon) {
476 // Animate some feedback to the click
477 final ApplicationInfo appInfo = (ApplicationInfo) v.getTag();
478 animateClickFeedback(v, new Runnable() {
479 @Override
480 public void run() {
481 mLauncher.startActivitySafely(appInfo.intent, appInfo);
482 }
483 });
484 } else if (v instanceof PagedViewWidget) {
Winson Chungd2e87b32011-06-02 10:53:07 -0700485 // Let the user know that they have to long press to add a widget
486 Toast.makeText(getContext(), R.string.long_press_widget_to_add,
487 Toast.LENGTH_SHORT).show();
Winson Chung46af2e82011-05-09 16:00:53 -0700488
Winson Chungd2e87b32011-06-02 10:53:07 -0700489 // Create a little animation to show that the widget can move
490 float offsetY = getResources().getDimensionPixelSize(R.dimen.dragViewOffsetY);
491 final ImageView p = (ImageView) v.findViewById(R.id.widget_preview);
492 AnimatorSet bounce = new AnimatorSet();
493 ValueAnimator tyuAnim = ObjectAnimator.ofFloat(p, "translationY", offsetY);
494 tyuAnim.setDuration(125);
495 ValueAnimator tydAnim = ObjectAnimator.ofFloat(p, "translationY", 0f);
496 tydAnim.setDuration(100);
497 bounce.play(tyuAnim).before(tydAnim);
498 bounce.setInterpolator(new AccelerateInterpolator());
499 bounce.start();
Winson Chung4b576be2011-04-27 17:40:20 -0700500 }
Winson Chung785d2eb2011-04-14 16:08:02 -0700501 }
502
503 /*
504 * PagedViewWithDraggableItems implementation
505 */
506 @Override
507 protected void determineDraggingStart(android.view.MotionEvent ev) {
508 // Disable dragging by pulling an app down for now.
509 }
Adam Cohenac8c8762011-07-13 11:15:27 -0700510
Winson Chung4b576be2011-04-27 17:40:20 -0700511 private void beginDraggingApplication(View v) {
Adam Cohenac8c8762011-07-13 11:15:27 -0700512 mLauncher.getWorkspace().onDragStartedWithItem(v);
513 mLauncher.getWorkspace().beginDragShared(v, this);
Winson Chung4b576be2011-04-27 17:40:20 -0700514 }
Adam Cohenac8c8762011-07-13 11:15:27 -0700515
Winson Chung4b576be2011-04-27 17:40:20 -0700516 private void beginDraggingWidget(View v) {
517 // Get the widget preview as the drag representation
518 ImageView image = (ImageView) v.findViewById(R.id.widget_preview);
Winson Chung1ed747a2011-05-03 16:18:34 -0700519 PendingAddItemInfo createItemInfo = (PendingAddItemInfo) v.getTag();
Winson Chung4b576be2011-04-27 17:40:20 -0700520
521 // Compose the drag image
Winson Chung1ed747a2011-05-03 16:18:34 -0700522 Bitmap b;
Winson Chung4b576be2011-04-27 17:40:20 -0700523 Drawable preview = image.getDrawable();
Winson Chung5fc72b32011-10-11 17:53:58 -0700524 RectF mTmpScaleRect = new RectF(0f,0f,1f,1f);
525 image.getImageMatrix().mapRect(mTmpScaleRect);
526 float scale = mTmpScaleRect.right;
527 int w = (int) (preview.getIntrinsicWidth() * scale);
528 int h = (int) (preview.getIntrinsicHeight() * scale);
Winson Chung1ed747a2011-05-03 16:18:34 -0700529 if (createItemInfo instanceof PendingAddWidgetInfo) {
530 PendingAddWidgetInfo createWidgetInfo = (PendingAddWidgetInfo) createItemInfo;
Adam Cohenf814aa02011-09-01 13:48:05 -0700531 int[] spanXY = mLauncher.getSpanForWidget(createWidgetInfo, null);
Winson Chung1ed747a2011-05-03 16:18:34 -0700532 createItemInfo.spanX = spanXY[0];
533 createItemInfo.spanY = spanXY[1];
534
535 b = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
Winson Chung5fc72b32011-10-11 17:53:58 -0700536 renderDrawableToBitmap(preview, b, 0, 0, w, h, scale, mDragViewMultiplyColor);
Winson Chung1ed747a2011-05-03 16:18:34 -0700537 } else {
538 // Workaround for the fact that we don't keep the original ResolveInfo associated with
539 // the shortcut around. To get the icon, we just render the preview image (which has
540 // the shortcut icon) to a new drag bitmap that clips the non-icon space.
541 b = Bitmap.createBitmap(mWidgetPreviewIconPaddedDimension,
542 mWidgetPreviewIconPaddedDimension, Bitmap.Config.ARGB_8888);
Winson Chungb44b5242011-06-13 11:32:14 -0700543 mCanvas.setBitmap(b);
544 mCanvas.save();
545 preview.draw(mCanvas);
546 mCanvas.restore();
Winson Chung70fc4382011-08-08 15:31:33 -0700547 mCanvas.drawColor(mDragViewMultiplyColor, PorterDuff.Mode.MULTIPLY);
Adam Cohenaaf473c2011-08-03 12:02:47 -0700548 mCanvas.setBitmap(null);
Winson Chung1ed747a2011-05-03 16:18:34 -0700549 createItemInfo.spanX = createItemInfo.spanY = 1;
550 }
Winson Chung4b576be2011-04-27 17:40:20 -0700551
552 // Start the drag
Adam Cohen446e9402011-09-15 18:21:21 -0700553 mLauncher.lockScreenOrientationOnLargeUI();
Winson Chung1ed747a2011-05-03 16:18:34 -0700554 mLauncher.getWorkspace().onDragStartedWithItemSpans(createItemInfo.spanX,
555 createItemInfo.spanY, b);
556 mDragController.startDrag(image, b, this, createItemInfo,
Winson Chung4b576be2011-04-27 17:40:20 -0700557 DragController.DRAG_ACTION_COPY, null);
558 b.recycle();
559 }
560 @Override
561 protected boolean beginDragging(View v) {
Winson Chung7d7541e2011-09-16 20:14:36 -0700562 // Dismiss the cling
563 mLauncher.dismissAllAppsCling(null);
564
Winson Chung4b576be2011-04-27 17:40:20 -0700565 if (!super.beginDragging(v)) return false;
566
Winson Chungc07918d2011-07-01 15:35:26 -0700567 // Go into spring loaded mode (must happen before we startDrag())
Adam Cohen7777d962011-08-18 18:58:38 -0700568 mLauncher.enterSpringLoadedDragMode();
Winson Chungfc79c802011-05-02 13:35:34 -0700569
Winson Chung4b576be2011-04-27 17:40:20 -0700570 if (v instanceof PagedViewIcon) {
571 beginDraggingApplication(v);
572 } else if (v instanceof PagedViewWidget) {
573 beginDraggingWidget(v);
574 }
Winson Chung785d2eb2011-04-14 16:08:02 -0700575 return true;
576 }
Winson Chung557d6ed2011-07-08 15:34:52 -0700577 private void endDragging(View target, boolean success) {
Winson Chung785d2eb2011-04-14 16:08:02 -0700578 mLauncher.getWorkspace().onDragStopped(success);
Adam Cohend4d7aa52011-07-19 21:47:37 -0700579 if (!success || (target != mLauncher.getWorkspace() &&
580 !(target instanceof DeleteDropTarget))) {
Winson Chung557d6ed2011-07-08 15:34:52 -0700581 // Exit spring loaded mode if we have not successfully dropped or have not handled the
582 // drop in Workspace
583 mLauncher.exitSpringLoadedDragMode();
584 }
Adam Cohen446e9402011-09-15 18:21:21 -0700585 mLauncher.unlockScreenOrientationOnLargeUI();
Winson Chungb26f3d62011-06-02 10:49:29 -0700586
Winson Chung785d2eb2011-04-14 16:08:02 -0700587 }
588
Winson Chung785d2eb2011-04-14 16:08:02 -0700589 @Override
Adam Cohenc0dcf592011-06-01 15:30:43 -0700590 public void onDropCompleted(View target, DragObject d, boolean success) {
Winson Chung557d6ed2011-07-08 15:34:52 -0700591 endDragging(target, success);
Winson Chungfc79c802011-05-02 13:35:34 -0700592
593 // Display an error message if the drag failed due to there not being enough space on the
594 // target layout we were dropping on.
595 if (!success) {
596 boolean showOutOfSpaceMessage = false;
597 if (target instanceof Workspace) {
598 int currentScreen = mLauncher.getCurrentWorkspaceScreen();
599 Workspace workspace = (Workspace) target;
600 CellLayout layout = (CellLayout) workspace.getChildAt(currentScreen);
Adam Cohenc0dcf592011-06-01 15:30:43 -0700601 ItemInfo itemInfo = (ItemInfo) d.dragInfo;
Winson Chungfc79c802011-05-02 13:35:34 -0700602 if (layout != null) {
603 layout.calculateSpans(itemInfo);
604 showOutOfSpaceMessage =
605 !layout.findCellForSpan(null, itemInfo.spanX, itemInfo.spanY);
606 }
607 }
608 // TODO-APPS_CUSTOMIZE: We need to handle this for folders as well later.
609 if (showOutOfSpaceMessage) {
610 mLauncher.showOutOfSpaceMessage();
611 }
612 }
Winson Chung785d2eb2011-04-14 16:08:02 -0700613 }
614
Winson Chung7f0acdd2011-09-19 18:34:19 -0700615 @Override
616 protected void onDetachedFromWindow() {
617 super.onDetachedFromWindow();
Adam Cohen0cd3b642011-10-14 14:58:00 -0700618 cancelAllTasks();
619 }
Winson Chung7f0acdd2011-09-19 18:34:19 -0700620
Adam Cohen0cd3b642011-10-14 14:58:00 -0700621 private void cancelAllTasks() {
Winson Chung7f0acdd2011-09-19 18:34:19 -0700622 // Clean up all the async tasks
623 Iterator<AppsCustomizeAsyncTask> iter = mRunningTasks.iterator();
624 while (iter.hasNext()) {
625 AppsCustomizeAsyncTask task = (AppsCustomizeAsyncTask) iter.next();
626 task.cancel(false);
627 iter.remove();
628 }
629 }
630
Winson Chung785d2eb2011-04-14 16:08:02 -0700631 public void setContentType(ContentType type) {
Adam Cohen0cd3b642011-10-14 14:58:00 -0700632 if (type == ContentType.Widgets) {
633 invalidatePageData(mNumAppsPages, true);
634 } else if (type == ContentType.Applications) {
635 invalidatePageData(0, true);
636 }
Winson Chungb44b5242011-06-13 11:32:14 -0700637 }
638
Winson Chung5a808352011-06-27 19:08:49 -0700639 public void setCurrentPageToWidgets() {
640 invalidatePageData(0);
641 }
Winson Chung5a808352011-06-27 19:08:49 -0700642
Adam Cohen0cd3b642011-10-14 14:58:00 -0700643 protected void snapToPage(int whichPage, int delta, int duration) {
644 super.snapToPage(whichPage, delta, duration);
645 updateCurrentTab(whichPage);
646 }
647
648 private void updateCurrentTab(int currentPage) {
649 AppsCustomizeTabHost tabHost = getTabHost();
650 String tag = tabHost.getCurrentTabTag();
651 if (currentPage >= mNumAppsPages &&
652 !tag.equals(tabHost.getTabTagForContentType(ContentType.Widgets))) {
653 tabHost.setCurrentTabFromContent(ContentType.Widgets);
654 } else if (currentPage < mNumAppsPages &&
655 !tag.equals(tabHost.getTabTagForContentType(ContentType.Applications))) {
656 tabHost.setCurrentTabFromContent(ContentType.Applications);
657 }
658 }
659
Winson Chung785d2eb2011-04-14 16:08:02 -0700660 /*
661 * Apps PagedView implementation
662 */
Winson Chung63257c12011-05-05 17:06:13 -0700663 private void setVisibilityOnChildren(ViewGroup layout, int visibility) {
664 int childCount = layout.getChildCount();
665 for (int i = 0; i < childCount; ++i) {
666 layout.getChildAt(i).setVisibility(visibility);
667 }
668 }
Winson Chung785d2eb2011-04-14 16:08:02 -0700669 private void setupPage(PagedViewCellLayout layout) {
670 layout.setCellCount(mCellCountX, mCellCountY);
671 layout.setGap(mPageLayoutWidthGap, mPageLayoutHeightGap);
672 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
673 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
674
Winson Chung63257c12011-05-05 17:06:13 -0700675 // Note: We force a measure here to get around the fact that when we do layout calculations
676 // immediately after syncing, we don't have a proper width. That said, we already know the
677 // expected page width, so we can actually optimize by hiding all the TextView-based
678 // children that are expensive to measure, and let that happen naturally later.
679 setVisibilityOnChildren(layout, View.GONE);
Winson Chungdb1138b2011-06-30 14:39:35 -0700680 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
Winson Chung785d2eb2011-04-14 16:08:02 -0700681 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
Winson Chung63257c12011-05-05 17:06:13 -0700682 layout.setMinimumWidth(getPageContentWidth());
Winson Chung785d2eb2011-04-14 16:08:02 -0700683 layout.measure(widthSpec, heightSpec);
Winson Chung63257c12011-05-05 17:06:13 -0700684 setVisibilityOnChildren(layout, View.VISIBLE);
Winson Chung785d2eb2011-04-14 16:08:02 -0700685 }
Adam Cohen0cd3b642011-10-14 14:58:00 -0700686
Winson Chungf314b0e2011-08-16 11:54:27 -0700687 public void syncAppsPageItems(int page, boolean immediate) {
Winson Chung785d2eb2011-04-14 16:08:02 -0700688 // ensure that we have the right number of items on the pages
Winson Chung785d2eb2011-04-14 16:08:02 -0700689 int numCells = mCellCountX * mCellCountY;
690 int startIndex = page * numCells;
691 int endIndex = Math.min(startIndex + numCells, mApps.size());
Adam Cohen22f823d2011-09-01 17:22:18 -0700692 PagedViewCellLayout layout = (PagedViewCellLayout) getPageAt(page);
Winson Chung875de7e2011-06-28 14:25:17 -0700693
Winson Chung785d2eb2011-04-14 16:08:02 -0700694 layout.removeAllViewsOnPage();
Winson Chungb44b5242011-06-13 11:32:14 -0700695 ArrayList<Object> items = new ArrayList<Object>();
696 ArrayList<Bitmap> images = new ArrayList<Bitmap>();
Winson Chung785d2eb2011-04-14 16:08:02 -0700697 for (int i = startIndex; i < endIndex; ++i) {
698 ApplicationInfo info = mApps.get(i);
699 PagedViewIcon icon = (PagedViewIcon) mLayoutInflater.inflate(
700 R.layout.apps_customize_application, layout, false);
Winson Chungb44b5242011-06-13 11:32:14 -0700701 icon.applyFromApplicationInfo(info, true, mHolographicOutlineHelper);
Winson Chung785d2eb2011-04-14 16:08:02 -0700702 icon.setOnClickListener(this);
703 icon.setOnLongClickListener(this);
704 icon.setOnTouchListener(this);
705
706 int index = i - startIndex;
707 int x = index % mCellCountX;
708 int y = index / mCellCountX;
Winson Chung6a70e9f2011-05-17 16:24:49 -0700709 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
Winson Chungb44b5242011-06-13 11:32:14 -0700710
711 items.add(info);
712 images.add(info.iconBitmap);
Winson Chung785d2eb2011-04-14 16:08:02 -0700713 }
Winson Chungf0ea4d32011-06-06 14:27:16 -0700714
Winson Chungf0ea4d32011-06-06 14:27:16 -0700715 layout.createHardwareLayers();
Winson Chungb44b5242011-06-13 11:32:14 -0700716
Winson Chung8ff87132011-09-30 19:40:46 -0700717 /* TEMPORARILY DISABLE HOLOGRAPHIC ICONS
Winson Chung54c725c2011-08-03 12:03:40 -0700718 if (mFadeInAdjacentScreens) {
719 prepareGenerateHoloOutlinesTask(page, items, images);
720 }
Winson Chung8ff87132011-09-30 19:40:46 -0700721 */
Winson Chung785d2eb2011-04-14 16:08:02 -0700722 }
Winson Chungb44b5242011-06-13 11:32:14 -0700723
724 /**
725 * Return the appropriate thread priority for loading for a given page (we give the current
726 * page much higher priority)
727 */
728 private int getThreadPriorityForPage(int page) {
729 // TODO-APPS_CUSTOMIZE: detect number of cores and set thread priorities accordingly below
730 int pageDiff = Math.abs(page - mCurrentPage);
731 if (pageDiff <= 0) {
732 // return Process.THREAD_PRIORITY_DEFAULT;
733 return Process.THREAD_PRIORITY_MORE_FAVORABLE;
734 } else if (pageDiff <= 1) {
735 // return Process.THREAD_PRIORITY_BACKGROUND;
736 return Process.THREAD_PRIORITY_DEFAULT;
737 } else {
738 // return Process.THREAD_PRIORITY_LOWEST;
739 return Process.THREAD_PRIORITY_DEFAULT;
740 }
741 }
Winson Chungf314b0e2011-08-16 11:54:27 -0700742 private int getSleepForPage(int page) {
743 int pageDiff = Math.abs(page - mCurrentPage) - 1;
744 return Math.max(0, pageDiff * sPageSleepDelay);
745 }
Winson Chungb44b5242011-06-13 11:32:14 -0700746 /**
747 * Creates and executes a new AsyncTask to load a page of widget previews.
748 */
749 private void prepareLoadWidgetPreviewsTask(int page, ArrayList<Object> widgets,
Winson Chungd2945262011-06-24 15:22:14 -0700750 int cellWidth, int cellHeight, int cellCountX) {
Winson Chungb44b5242011-06-13 11:32:14 -0700751 // Prune all tasks that are no longer needed
752 Iterator<AppsCustomizeAsyncTask> iter = mRunningTasks.iterator();
753 while (iter.hasNext()) {
754 AppsCustomizeAsyncTask task = (AppsCustomizeAsyncTask) iter.next();
755 int taskPage = task.page;
Winson Chung875de7e2011-06-28 14:25:17 -0700756 if ((taskPage == page) ||
Adam Cohen0cd3b642011-10-14 14:58:00 -0700757 taskPage < getAssociatedLowerPageBound(mCurrentPage - mNumAppsPages) ||
758 taskPage > getAssociatedUpperPageBound(mCurrentPage - mNumAppsPages)) {
Winson Chungb44b5242011-06-13 11:32:14 -0700759 task.cancel(false);
760 iter.remove();
761 } else {
Adam Cohen0cd3b642011-10-14 14:58:00 -0700762 task.setThreadPriority(getThreadPriorityForPage(taskPage + mNumAppsPages));
Winson Chungb44b5242011-06-13 11:32:14 -0700763 }
764 }
765
Winson Chungf314b0e2011-08-16 11:54:27 -0700766 // We introduce a slight delay to order the loading of side pages so that we don't thrash
Adam Cohen0cd3b642011-10-14 14:58:00 -0700767 final int sleepMs = getSleepForPage(page + mNumAppsPages);
Winson Chungb44b5242011-06-13 11:32:14 -0700768 AsyncTaskPageData pageData = new AsyncTaskPageData(page, widgets, cellWidth, cellHeight,
Winson Chungd2945262011-06-24 15:22:14 -0700769 cellCountX, new AsyncTaskCallback() {
Winson Chungb44b5242011-06-13 11:32:14 -0700770 @Override
771 public void run(AppsCustomizeAsyncTask task, AsyncTaskPageData data) {
Winson Chungf314b0e2011-08-16 11:54:27 -0700772 try {
Winson Chung09945932011-09-20 14:22:40 -0700773 try {
774 Thread.sleep(sleepMs);
775 } catch (Exception e) {}
776 loadWidgetPreviewsInBackground(task, data);
777 } finally {
778 if (task.isCancelled()) {
779 data.cleanup(true);
780 }
781 }
Winson Chungb44b5242011-06-13 11:32:14 -0700782 }
783 },
784 new AsyncTaskCallback() {
785 @Override
786 public void run(AppsCustomizeAsyncTask task, AsyncTaskPageData data) {
Winson Chung09945932011-09-20 14:22:40 -0700787 try {
788 mRunningTasks.remove(task);
789 if (task.isCancelled()) return;
Winson Chung09945932011-09-20 14:22:40 -0700790 onSyncWidgetPageItems(data);
791 } finally {
792 data.cleanup(task.isCancelled());
793 }
Winson Chungb44b5242011-06-13 11:32:14 -0700794 }
Winson Chung09945932011-09-20 14:22:40 -0700795 });
Winson Chungb44b5242011-06-13 11:32:14 -0700796
797 // Ensure that the task is appropriately prioritized and runs in parallel
Adam Cohen0cd3b642011-10-14 14:58:00 -0700798 AppsCustomizeAsyncTask t = new AppsCustomizeAsyncTask(page,
Winson Chung875de7e2011-06-28 14:25:17 -0700799 AsyncTaskPageData.Type.LoadWidgetPreviewData);
Winson Chungb44b5242011-06-13 11:32:14 -0700800 t.setThreadPriority(getThreadPriorityForPage(page));
801 t.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, pageData);
802 mRunningTasks.add(t);
803 }
804 /**
805 * Creates and executes a new AsyncTask to load the outlines for a page of content.
806 */
807 private void prepareGenerateHoloOutlinesTask(int page, ArrayList<Object> items,
808 ArrayList<Bitmap> images) {
Winson Chung875de7e2011-06-28 14:25:17 -0700809 // Prune old tasks for this page
810 Iterator<AppsCustomizeAsyncTask> iter = mRunningTasks.iterator();
811 while (iter.hasNext()) {
812 AppsCustomizeAsyncTask task = (AppsCustomizeAsyncTask) iter.next();
813 int taskPage = task.page;
814 if ((taskPage == page) &&
815 (task.dataType == AsyncTaskPageData.Type.LoadHolographicIconsData)) {
816 task.cancel(false);
817 iter.remove();
818 }
819 }
820
Winson Chungb44b5242011-06-13 11:32:14 -0700821 AsyncTaskPageData pageData = new AsyncTaskPageData(page, items, images,
822 new AsyncTaskCallback() {
823 @Override
824 public void run(AppsCustomizeAsyncTask task, AsyncTaskPageData data) {
Winson Chung09945932011-09-20 14:22:40 -0700825 try {
826 // Ensure that this task starts running at the correct priority
Winson Chungb44b5242011-06-13 11:32:14 -0700827 task.syncThreadPriority();
828
Winson Chung09945932011-09-20 14:22:40 -0700829 ArrayList<Bitmap> images = data.generatedImages;
830 ArrayList<Bitmap> srcImages = data.sourceImages;
831 int count = srcImages.size();
832 Canvas c = new Canvas();
833 for (int i = 0; i < count && !task.isCancelled(); ++i) {
834 // Before work on each item, ensure that this task is running at the correct
835 // priority
836 task.syncThreadPriority();
Winson Chungb44b5242011-06-13 11:32:14 -0700837
Winson Chung09945932011-09-20 14:22:40 -0700838 Bitmap b = srcImages.get(i);
839 Bitmap outline = Bitmap.createBitmap(b.getWidth(), b.getHeight(),
840 Bitmap.Config.ARGB_8888);
Winson Chungb44b5242011-06-13 11:32:14 -0700841
Winson Chung09945932011-09-20 14:22:40 -0700842 c.setBitmap(outline);
843 c.save();
844 c.drawBitmap(b, 0, 0, null);
845 c.restore();
846 c.setBitmap(null);
847
848 images.add(outline);
849 }
850 } finally {
851 if (task.isCancelled()) {
852 data.cleanup(true);
853 }
Winson Chungb44b5242011-06-13 11:32:14 -0700854 }
855 }
856 },
857 new AsyncTaskCallback() {
858 @Override
859 public void run(AppsCustomizeAsyncTask task, AsyncTaskPageData data) {
Winson Chung09945932011-09-20 14:22:40 -0700860 try {
861 mRunningTasks.remove(task);
862 if (task.isCancelled()) return;
Winson Chung09945932011-09-20 14:22:40 -0700863 onHolographicPageItemsLoaded(data);
864 } finally {
865 data.cleanup(task.isCancelled());
866 }
Winson Chungb44b5242011-06-13 11:32:14 -0700867 }
868 });
869
870 // Ensure that the outline task always runs in the background, serially
Winson Chung4e076542011-06-23 13:04:10 -0700871 AppsCustomizeAsyncTask t =
Adam Cohen0cd3b642011-10-14 14:58:00 -0700872 new AppsCustomizeAsyncTask(page, AsyncTaskPageData.Type.LoadHolographicIconsData);
Winson Chungb44b5242011-06-13 11:32:14 -0700873 t.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
874 t.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, pageData);
875 mRunningTasks.add(t);
876 }
877
Winson Chung785d2eb2011-04-14 16:08:02 -0700878 /*
879 * Widgets PagedView implementation
880 */
Winson Chung4e6a9762011-05-09 11:56:34 -0700881 private void setupPage(PagedViewGridLayout layout) {
Winson Chung785d2eb2011-04-14 16:08:02 -0700882 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
883 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
Winson Chung63257c12011-05-05 17:06:13 -0700884
885 // Note: We force a measure here to get around the fact that when we do layout calculations
Winson Chungd52f3d82011-07-12 14:29:11 -0700886 // immediately after syncing, we don't have a proper width.
Winson Chung63257c12011-05-05 17:06:13 -0700887 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
888 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
Winson Chung785d2eb2011-04-14 16:08:02 -0700889 layout.setMinimumWidth(getPageContentWidth());
Winson Chung63257c12011-05-05 17:06:13 -0700890 layout.measure(widthSpec, heightSpec);
Winson Chung785d2eb2011-04-14 16:08:02 -0700891 }
Adam Cohen0cd3b642011-10-14 14:58:00 -0700892
Winson Chung5fc72b32011-10-11 17:53:58 -0700893 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h) {
894 renderDrawableToBitmap(d, bitmap, x, y, w, h, 1f, 0xFFFFFFFF);
Winson Chung70fc4382011-08-08 15:31:33 -0700895 }
896 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h,
Winson Chung5fc72b32011-10-11 17:53:58 -0700897 float scale) {
898 renderDrawableToBitmap(d, bitmap, x, y, w, h, scale, 0xFFFFFFFF);
899 }
900 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h,
901 float scale, int multiplyColor) {
Winson Chung201bc822011-06-20 15:41:53 -0700902 if (bitmap != null) {
Winson Chungb44b5242011-06-13 11:32:14 -0700903 Canvas c = new Canvas(bitmap);
Winson Chung5fc72b32011-10-11 17:53:58 -0700904 c.scale(scale, scale);
Winson Chung201bc822011-06-20 15:41:53 -0700905 Rect oldBounds = d.copyBounds();
906 d.setBounds(x, y, x + w, y + h);
907 d.draw(c);
908 d.setBounds(oldBounds); // Restore the bounds
Winson Chung70fc4382011-08-08 15:31:33 -0700909 if (multiplyColor != 0xFFFFFFFF) {
910 c.drawColor(mDragViewMultiplyColor, PorterDuff.Mode.MULTIPLY);
911 }
Adam Cohenaaf473c2011-08-03 12:02:47 -0700912 c.setBitmap(null);
Winson Chung201bc822011-06-20 15:41:53 -0700913 }
Winson Chung785d2eb2011-04-14 16:08:02 -0700914 }
Winson Chungd2945262011-06-24 15:22:14 -0700915 private Bitmap getShortcutPreview(ResolveInfo info, int cellWidth, int cellHeight) {
Winson Chung5fc72b32011-10-11 17:53:58 -0700916 // Render the background
917 int offset = (int) (mAppIconSize * sWidgetPreviewIconPaddingPercentage);
918 int bitmapSize = mAppIconSize + 2 * offset;
919 Bitmap preview = Bitmap.createBitmap(bitmapSize, bitmapSize, Config.ARGB_8888);
920 renderDrawableToBitmap(mDefaultWidgetBackground, preview, 0, 0, bitmapSize, bitmapSize);
921
Winson Chung1ed747a2011-05-03 16:18:34 -0700922 // Render the icon
Winson Chung4dbea792011-05-05 14:21:32 -0700923 Drawable icon = mIconCache.getFullResIcon(info, mPackageManager);
Winson Chung5fc72b32011-10-11 17:53:58 -0700924 renderDrawableToBitmap(icon, preview, offset, offset, mAppIconSize, mAppIconSize);
Winson Chungb44b5242011-06-13 11:32:14 -0700925 return preview;
Winson Chung1ed747a2011-05-03 16:18:34 -0700926 }
Winson Chung4e076542011-06-23 13:04:10 -0700927 private Bitmap getWidgetPreview(AppWidgetProviderInfo info,
Winson Chungb44b5242011-06-13 11:32:14 -0700928 int cellHSpan, int cellVSpan, int cellWidth, int cellHeight) {
Winson Chung1ed747a2011-05-03 16:18:34 -0700929
Winson Chung4b576be2011-04-27 17:40:20 -0700930 // Load the preview image if possible
931 String packageName = info.provider.getPackageName();
932 Drawable drawable = null;
Winson Chungb44b5242011-06-13 11:32:14 -0700933 Bitmap preview = null;
Winson Chung4b576be2011-04-27 17:40:20 -0700934 if (info.previewImage != 0) {
935 drawable = mPackageManager.getDrawable(packageName, info.previewImage, null);
936 if (drawable == null) {
937 Log.w(LOG_TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
938 + " for provider: " + info.provider);
939 } else {
Winson Chung5fc72b32011-10-11 17:53:58 -0700940 // Scale down the preview to something that is closer to the cellWidth/Height
Winson Chung4b576be2011-04-27 17:40:20 -0700941 int imageWidth = drawable.getIntrinsicWidth();
942 int imageHeight = drawable.getIntrinsicHeight();
Winson Chung5fc72b32011-10-11 17:53:58 -0700943 int bitmapWidth = imageWidth;
944 int bitmapHeight = imageHeight;
945 if (imageWidth > imageHeight) {
946 bitmapWidth = cellWidth;
947 bitmapHeight = (int) (imageHeight * ((float) bitmapWidth / imageWidth));
Winson Chung4b576be2011-04-27 17:40:20 -0700948 } else {
Winson Chung5fc72b32011-10-11 17:53:58 -0700949 bitmapHeight = cellHeight;
950 bitmapWidth = (int) (imageWidth * ((float) bitmapHeight / imageHeight));
Winson Chung4b576be2011-04-27 17:40:20 -0700951 }
952
Winson Chung5fc72b32011-10-11 17:53:58 -0700953 preview = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Config.ARGB_8888);
954 renderDrawableToBitmap(drawable, preview, 0, 0, bitmapWidth, bitmapHeight);
Winson Chung4b576be2011-04-27 17:40:20 -0700955 }
956 }
957
958 // Generate a preview image if we couldn't load one
959 if (drawable == null) {
Winson Chung1ed747a2011-05-03 16:18:34 -0700960 Resources resources = mLauncher.getResources();
Winson Chung5fc72b32011-10-11 17:53:58 -0700961 // TODO: This actually uses the apps customize cell layout params, where as we make want
962 // the Workspace params for more accuracy.
963 int targetWidth = mWidgetSpacingLayout.estimateCellWidth(cellHSpan);
964 int targetHeight = mWidgetSpacingLayout.estimateCellHeight(cellVSpan);
965 int bitmapWidth = targetWidth;
966 int bitmapHeight = targetHeight;
967 int offset = (int) (mAppIconSize * sWidgetPreviewIconPaddingPercentage);
968 float iconScale = 1f;
Winson Chung1ed747a2011-05-03 16:18:34 -0700969
Winson Chung5fc72b32011-10-11 17:53:58 -0700970 // Determine the size of the bitmap we want to draw
Winson Chung273c1022011-07-11 13:40:52 -0700971 if (cellHSpan == cellVSpan) {
Winson Chung5fc72b32011-10-11 17:53:58 -0700972 // For square widgets, we just have a fixed size for 1x1 and larger-than-1x1
973 if (cellHSpan <= 1) {
974 bitmapWidth = bitmapHeight = mAppIconSize + 2 * offset;
975 } else {
976 bitmapWidth = bitmapHeight = mAppIconSize + 4 * offset;
977 }
Winson Chung1ed747a2011-05-03 16:18:34 -0700978 } else {
Winson Chung5fc72b32011-10-11 17:53:58 -0700979 // Otherwise, ensure that we are properly sized within the cellWidth/Height
980 if (targetWidth > targetHeight) {
981 bitmapWidth = Math.min(targetWidth, cellWidth);
982 bitmapHeight = (int) (targetHeight * ((float) bitmapWidth / targetWidth));
983 iconScale = Math.min((float) bitmapHeight / (mAppIconSize + 2 * offset), 1f);
984 } else {
985 bitmapHeight = Math.min(targetHeight, cellHeight);
986 bitmapWidth = (int) (targetWidth * ((float) bitmapHeight / targetHeight));
987 iconScale = Math.min((float) bitmapWidth / (mAppIconSize + 2 * offset), 1f);
988 }
Winson Chung1ed747a2011-05-03 16:18:34 -0700989 }
Winson Chung273c1022011-07-11 13:40:52 -0700990 preview = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Config.ARGB_8888);
Winson Chung5fc72b32011-10-11 17:53:58 -0700991 renderDrawableToBitmap(mDefaultWidgetBackground, preview, 0, 0, bitmapWidth,
992 bitmapWidth);
Winson Chung4b576be2011-04-27 17:40:20 -0700993
994 // Draw the icon in the top left corner
995 try {
996 Drawable icon = null;
997 if (info.icon > 0) icon = mPackageManager.getDrawable(packageName, info.icon, null);
998 if (icon == null) icon = resources.getDrawable(R.drawable.ic_launcher_application);
999
Winson Chung5fc72b32011-10-11 17:53:58 -07001000 renderDrawableToBitmap(icon, preview, (int) (offset * iconScale),
1001 (int) (offset * iconScale), (int) (mAppIconSize * iconScale),
1002 (int) (mAppIconSize * iconScale));
Winson Chung4b576be2011-04-27 17:40:20 -07001003 } catch (Resources.NotFoundException e) {}
Winson Chung4b576be2011-04-27 17:40:20 -07001004 }
Winson Chungb44b5242011-06-13 11:32:14 -07001005 return preview;
Winson Chung785d2eb2011-04-14 16:08:02 -07001006 }
Adam Cohen0cd3b642011-10-14 14:58:00 -07001007
Winson Chungf314b0e2011-08-16 11:54:27 -07001008 public void syncWidgetPageItems(int page, boolean immediate) {
Winson Chung6a3fd3f2011-08-02 14:03:26 -07001009 int numItemsPerPage = mWidgetCountX * mWidgetCountY;
Winson Chungd2945262011-06-24 15:22:14 -07001010 int contentWidth = mWidgetSpacingLayout.getContentWidth();
1011 int contentHeight = mWidgetSpacingLayout.getContentHeight();
Winson Chungb44b5242011-06-13 11:32:14 -07001012
Winson Chungd2945262011-06-24 15:22:14 -07001013 // Calculate the dimensions of each cell we are giving to each widget
Winson Chungd2945262011-06-24 15:22:14 -07001014 ArrayList<Object> items = new ArrayList<Object>();
1015 int cellWidth = ((contentWidth - mPageLayoutPaddingLeft - mPageLayoutPaddingRight
Winson Chung6a3fd3f2011-08-02 14:03:26 -07001016 - ((mWidgetCountX - 1) * mWidgetWidthGap)) / mWidgetCountX);
Winson Chungd2945262011-06-24 15:22:14 -07001017 int cellHeight = ((contentHeight - mPageLayoutPaddingTop - mPageLayoutPaddingBottom
Winson Chung6a3fd3f2011-08-02 14:03:26 -07001018 - ((mWidgetCountY - 1) * mWidgetHeightGap)) / mWidgetCountY);
Winson Chungd2945262011-06-24 15:22:14 -07001019
Winson Chunge4a647f2011-09-30 14:41:25 -07001020 // Prepare the set of widgets to load previews for in the background
Winson Chung6a3fd3f2011-08-02 14:03:26 -07001021 int offset = page * numItemsPerPage;
1022 for (int i = offset; i < Math.min(offset + numItemsPerPage, mWidgets.size()); ++i) {
1023 items.add(mWidgets.get(i));
Winson Chungb44b5242011-06-13 11:32:14 -07001024 }
1025
Winson Chunge4a647f2011-09-30 14:41:25 -07001026 // Prepopulate the pages with the other widget info, and fill in the previews later
Adam Cohen0cd3b642011-10-14 14:58:00 -07001027 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(page + mNumAppsPages);
Winson Chunge4a647f2011-09-30 14:41:25 -07001028 layout.setColumnCount(layout.getCellCountX());
1029 for (int i = 0; i < items.size(); ++i) {
1030 Object rawInfo = items.get(i);
1031 PendingAddItemInfo createItemInfo = null;
1032 PagedViewWidget widget = (PagedViewWidget) mLayoutInflater.inflate(
1033 R.layout.apps_customize_widget, layout, false);
1034 if (rawInfo instanceof AppWidgetProviderInfo) {
1035 // Fill in the widget information
1036 AppWidgetProviderInfo info = (AppWidgetProviderInfo) rawInfo;
1037 createItemInfo = new PendingAddWidgetInfo(info, null, null);
1038 int[] cellSpans = mLauncher.getSpanForWidget(info, null);
1039 widget.applyFromAppWidgetProviderInfo(info, -1, cellSpans,
1040 mHolographicOutlineHelper);
1041 widget.setTag(createItemInfo);
1042 } else if (rawInfo instanceof ResolveInfo) {
1043 // Fill in the shortcuts information
1044 ResolveInfo info = (ResolveInfo) rawInfo;
1045 createItemInfo = new PendingAddItemInfo();
1046 createItemInfo.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
1047 createItemInfo.componentName = new ComponentName(info.activityInfo.packageName,
1048 info.activityInfo.name);
1049 widget.applyFromResolveInfo(mPackageManager, info, mHolographicOutlineHelper);
1050 widget.setTag(createItemInfo);
1051 }
1052 widget.setOnClickListener(this);
1053 widget.setOnLongClickListener(this);
1054 widget.setOnTouchListener(this);
1055
1056 // Layout each widget
1057 int ix = i % mWidgetCountX;
1058 int iy = i / mWidgetCountX;
1059 GridLayout.LayoutParams lp = new GridLayout.LayoutParams(
1060 GridLayout.spec(iy, GridLayout.LEFT),
1061 GridLayout.spec(ix, GridLayout.TOP));
1062 lp.width = cellWidth;
1063 lp.height = cellHeight;
1064 lp.setGravity(Gravity.TOP | Gravity.LEFT);
1065 if (ix > 0) lp.leftMargin = mWidgetWidthGap;
1066 if (iy > 0) lp.topMargin = mWidgetHeightGap;
1067 layout.addView(widget, lp);
1068 }
1069
1070 // Load the widget previews
Winson Chungf314b0e2011-08-16 11:54:27 -07001071 if (immediate) {
1072 AsyncTaskPageData data = new AsyncTaskPageData(page, items, cellWidth, cellHeight,
1073 mWidgetCountX, null, null);
1074 loadWidgetPreviewsInBackground(null, data);
1075 onSyncWidgetPageItems(data);
1076 } else {
1077 prepareLoadWidgetPreviewsTask(page, items, cellWidth, cellHeight, mWidgetCountX);
1078 }
1079 }
1080 private void loadWidgetPreviewsInBackground(AppsCustomizeAsyncTask task,
1081 AsyncTaskPageData data) {
1082 if (task != null) {
1083 // Ensure that this task starts running at the correct priority
1084 task.syncThreadPriority();
1085 }
1086
1087 // Load each of the widget/shortcut previews
1088 ArrayList<Object> items = data.items;
1089 ArrayList<Bitmap> images = data.generatedImages;
1090 int count = items.size();
1091 int cellWidth = data.cellWidth;
1092 int cellHeight = data.cellHeight;
1093 for (int i = 0; i < count; ++i) {
1094 if (task != null) {
1095 // Ensure we haven't been cancelled yet
1096 if (task.isCancelled()) break;
1097 // Before work on each item, ensure that this task is running at the correct
1098 // priority
1099 task.syncThreadPriority();
1100 }
1101
1102 Object rawInfo = items.get(i);
1103 if (rawInfo instanceof AppWidgetProviderInfo) {
1104 AppWidgetProviderInfo info = (AppWidgetProviderInfo) rawInfo;
Adam Cohenf814aa02011-09-01 13:48:05 -07001105 int[] cellSpans = mLauncher.getSpanForWidget(info, null);
Winson Chungf314b0e2011-08-16 11:54:27 -07001106 images.add(getWidgetPreview(info, cellSpans[0],cellSpans[1],
1107 cellWidth, cellHeight));
1108 } else if (rawInfo instanceof ResolveInfo) {
1109 // Fill in the shortcuts information
1110 ResolveInfo info = (ResolveInfo) rawInfo;
1111 images.add(getShortcutPreview(info, cellWidth, cellHeight));
1112 }
1113 }
Winson Chungb44b5242011-06-13 11:32:14 -07001114 }
1115 private void onSyncWidgetPageItems(AsyncTaskPageData data) {
1116 int page = data.page;
Adam Cohen0cd3b642011-10-14 14:58:00 -07001117 PagedViewGridLayout layout = (PagedViewGridLayout) getPageAt(page + mNumAppsPages);
Winson Chung785d2eb2011-04-14 16:08:02 -07001118
Winson Chungb44b5242011-06-13 11:32:14 -07001119 ArrayList<Object> items = data.items;
1120 int count = items.size();
Winson Chungb44b5242011-06-13 11:32:14 -07001121 for (int i = 0; i < count; ++i) {
Winson Chunge4a647f2011-09-30 14:41:25 -07001122 PagedViewWidget widget = (PagedViewWidget) layout.getChildAt(i);
1123 if (widget != null) {
Winson Chung5fc72b32011-10-11 17:53:58 -07001124 Bitmap preview = data.generatedImages.get(i);
1125 boolean scale =
1126 (preview.getWidth() >= data.cellWidth ||
1127 preview.getHeight() >= data.cellHeight);
1128
1129 widget.applyPreview(new FastBitmapDrawable(preview), i, scale);
Winson Chung1ed747a2011-05-03 16:18:34 -07001130 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001131 }
Winson Chung7f0acdd2011-09-19 18:34:19 -07001132 layout.createHardwareLayer();
Winson Chungb44b5242011-06-13 11:32:14 -07001133
1134 invalidate();
1135 forceUpdateAdjacentPagesAlpha();
Winson Chung54c725c2011-08-03 12:03:40 -07001136
Winson Chung8ff87132011-09-30 19:40:46 -07001137 /* TEMPORARILY DISABLE HOLOGRAPHIC ICONS
Winson Chung54c725c2011-08-03 12:03:40 -07001138 if (mFadeInAdjacentScreens) {
1139 prepareGenerateHoloOutlinesTask(data.page, data.items, data.generatedImages);
1140 }
Winson Chung8ff87132011-09-30 19:40:46 -07001141 */
Winson Chungb44b5242011-06-13 11:32:14 -07001142 }
1143 private void onHolographicPageItemsLoaded(AsyncTaskPageData data) {
1144 // Invalidate early to short-circuit children invalidates
1145 invalidate();
1146
1147 int page = data.page;
Adam Cohen22f823d2011-09-01 17:22:18 -07001148 ViewGroup layout = (ViewGroup) getPageAt(page);
Winson Chungb44b5242011-06-13 11:32:14 -07001149 if (layout instanceof PagedViewCellLayout) {
1150 PagedViewCellLayout cl = (PagedViewCellLayout) layout;
1151 int count = cl.getPageChildCount();
Winson Chung875de7e2011-06-28 14:25:17 -07001152 if (count != data.generatedImages.size()) return;
Winson Chungb44b5242011-06-13 11:32:14 -07001153 for (int i = 0; i < count; ++i) {
1154 PagedViewIcon icon = (PagedViewIcon) cl.getChildOnPageAt(i);
Winson Chung4e076542011-06-23 13:04:10 -07001155 icon.setHolographicOutline(data.generatedImages.get(i));
Winson Chungb44b5242011-06-13 11:32:14 -07001156 }
1157 } else {
1158 int count = layout.getChildCount();
Winson Chung875de7e2011-06-28 14:25:17 -07001159 if (count != data.generatedImages.size()) return;
Winson Chungb44b5242011-06-13 11:32:14 -07001160 for (int i = 0; i < count; ++i) {
1161 View v = layout.getChildAt(i);
Winson Chung4e076542011-06-23 13:04:10 -07001162 ((PagedViewWidget) v).setHolographicOutline(data.generatedImages.get(i));
Winson Chungb44b5242011-06-13 11:32:14 -07001163 }
1164 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001165 }
Winson Chung46af2e82011-05-09 16:00:53 -07001166
Winson Chung785d2eb2011-04-14 16:08:02 -07001167 @Override
1168 public void syncPages() {
1169 removeAllViews();
Adam Cohen0cd3b642011-10-14 14:58:00 -07001170 cancelAllTasks();
Winson Chung875de7e2011-06-28 14:25:17 -07001171
Adam Cohen0cd3b642011-10-14 14:58:00 -07001172 Context context = getContext();
1173 for (int j = 0; j < mNumWidgetPages; ++j) {
1174 PagedViewGridLayout layout = new PagedViewGridLayout(context, mWidgetCountX,
1175 mWidgetCountY);
1176 setupPage(layout);
1177 addView(layout, new PagedViewGridLayout.LayoutParams(LayoutParams.MATCH_PARENT,
1178 LayoutParams.MATCH_PARENT));
Winson Chung875de7e2011-06-28 14:25:17 -07001179 }
1180
Adam Cohen0cd3b642011-10-14 14:58:00 -07001181 for (int i = 0; i < mNumAppsPages; ++i) {
1182 PagedViewCellLayout layout = new PagedViewCellLayout(context);
1183 setupPage(layout);
1184 addView(layout);
Winson Chung785d2eb2011-04-14 16:08:02 -07001185 }
1186 }
Adam Cohen0cd3b642011-10-14 14:58:00 -07001187
Winson Chung785d2eb2011-04-14 16:08:02 -07001188 @Override
Winson Chungf314b0e2011-08-16 11:54:27 -07001189 public void syncPageItems(int page, boolean immediate) {
Adam Cohen0cd3b642011-10-14 14:58:00 -07001190 if (page < mNumAppsPages) {
Winson Chungf314b0e2011-08-16 11:54:27 -07001191 syncAppsPageItems(page, immediate);
Adam Cohen0cd3b642011-10-14 14:58:00 -07001192 } else {
1193 syncWidgetPageItems(page - mNumAppsPages, immediate);
Winson Chung785d2eb2011-04-14 16:08:02 -07001194 }
1195 }
1196
Adam Cohen22f823d2011-09-01 17:22:18 -07001197 // We want our pages to be z-ordered such that the further a page is to the left, the higher
1198 // it is in the z-order. This is important to insure touch events are handled correctly.
1199 View getPageAt(int index) {
1200 return getChildAt(getChildCount() - index - 1);
1201 }
1202
1203 // In apps customize, we have a scrolling effect which emulates pulling cards off of a stack.
1204 @Override
1205 protected void screenScrolled(int screenCenter) {
1206 super.screenScrolled(screenCenter);
Adam Cohen22f823d2011-09-01 17:22:18 -07001207
1208 for (int i = 0; i < getChildCount(); i++) {
1209 View v = getPageAt(i);
1210 if (v != null) {
Adam Cohenb5ba0972011-09-07 18:02:31 -07001211 float scrollProgress = getScrollProgress(screenCenter, v, i);
Adam Cohen22f823d2011-09-01 17:22:18 -07001212
1213 float interpolatedProgress =
1214 mZInterpolator.getInterpolation(Math.abs(Math.min(scrollProgress, 0)));
1215 float scale = (1 - interpolatedProgress) +
1216 interpolatedProgress * TRANSITION_SCALE_FACTOR;
1217 float translationX = Math.min(0, scrollProgress) * v.getMeasuredWidth();
Adam Cohenb5ba0972011-09-07 18:02:31 -07001218
1219 float alpha = scrollProgress < 0 ? mAlphaInterpolator.getInterpolation(
1220 1 - Math.abs(scrollProgress)) : 1.0f;
Adam Cohen22f823d2011-09-01 17:22:18 -07001221
1222 v.setCameraDistance(mDensity * CAMERA_DISTANCE);
1223 int pageWidth = v.getMeasuredWidth();
1224 int pageHeight = v.getMeasuredHeight();
Adam Cohenb5ba0972011-09-07 18:02:31 -07001225
1226 if (PERFORM_OVERSCROLL_ROTATION) {
1227 if (i == 0 && scrollProgress < 0) {
1228 // Overscroll to the left
1229 v.setPivotX(TRANSITION_PIVOT * pageWidth);
1230 v.setRotationY(-TRANSITION_MAX_ROTATION * scrollProgress);
1231 scale = 1.0f;
1232 alpha = 1.0f;
1233 // On the first page, we don't want the page to have any lateral motion
1234 translationX = getScrollX();
1235 } else if (i == getChildCount() - 1 && scrollProgress > 0) {
1236 // Overscroll to the right
1237 v.setPivotX((1 - TRANSITION_PIVOT) * pageWidth);
1238 v.setRotationY(-TRANSITION_MAX_ROTATION * scrollProgress);
1239 scale = 1.0f;
1240 alpha = 1.0f;
1241 // On the last page, we don't want the page to have any lateral motion.
1242 translationX = getScrollX() - mMaxScrollX;
1243 } else {
1244 v.setPivotY(pageHeight / 2.0f);
1245 v.setPivotX(pageWidth / 2.0f);
1246 v.setRotationY(0f);
1247 }
Adam Cohen22f823d2011-09-01 17:22:18 -07001248 }
1249
1250 v.setTranslationX(translationX);
1251 v.setScaleX(scale);
1252 v.setScaleY(scale);
1253 v.setAlpha(alpha);
1254 }
1255 }
1256 }
1257
1258 protected void overScroll(float amount) {
Adam Cohencff6af82011-09-13 14:51:53 -07001259 acceleratedOverScroll(amount);
Adam Cohen22f823d2011-09-01 17:22:18 -07001260 }
1261
Winson Chung785d2eb2011-04-14 16:08:02 -07001262 /**
1263 * Used by the parent to get the content width to set the tab bar to
1264 * @return
1265 */
1266 public int getPageContentWidth() {
1267 return mContentWidth;
1268 }
1269
Winson Chungb26f3d62011-06-02 10:49:29 -07001270 @Override
Winson Chungb26f3d62011-06-02 10:49:29 -07001271 protected void onPageEndMoving() {
Winson Chungb26f3d62011-06-02 10:49:29 -07001272 super.onPageEndMoving();
Winson Chung5afbf7b2011-07-25 11:53:08 -07001273
1274 // We reset the save index when we change pages so that it will be recalculated on next
1275 // rotation
1276 mSaveInstanceStateItemIndex = -1;
Winson Chungb26f3d62011-06-02 10:49:29 -07001277 }
1278
Winson Chung785d2eb2011-04-14 16:08:02 -07001279 /*
1280 * AllAppsView implementation
1281 */
1282 @Override
1283 public void setup(Launcher launcher, DragController dragController) {
1284 mLauncher = launcher;
1285 mDragController = dragController;
1286 }
1287 @Override
1288 public void zoom(float zoom, boolean animate) {
1289 // TODO-APPS_CUSTOMIZE: Call back to mLauncher.zoomed()
1290 }
1291 @Override
1292 public boolean isVisible() {
1293 return (getVisibility() == VISIBLE);
1294 }
1295 @Override
1296 public boolean isAnimating() {
1297 return false;
1298 }
1299 @Override
1300 public void setApps(ArrayList<ApplicationInfo> list) {
1301 mApps = list;
1302 Collections.sort(mApps, LauncherModel.APP_NAME_COMPARATOR);
Winson Chungf0ea4d32011-06-06 14:27:16 -07001303
Winson Chung875de7e2011-06-28 14:25:17 -07001304 // The next layout pass will trigger data-ready if both widgets and apps are set, so
1305 // request a layout to do this test and invalidate the page data when ready.
Winson Chungf0ea4d32011-06-06 14:27:16 -07001306 if (testDataReady()) requestLayout();
Winson Chung785d2eb2011-04-14 16:08:02 -07001307 }
1308 private void addAppsWithoutInvalidate(ArrayList<ApplicationInfo> list) {
1309 // We add it in place, in alphabetical order
1310 int count = list.size();
1311 for (int i = 0; i < count; ++i) {
1312 ApplicationInfo info = list.get(i);
1313 int index = Collections.binarySearch(mApps, info, LauncherModel.APP_NAME_COMPARATOR);
1314 if (index < 0) {
1315 mApps.add(-(index + 1), info);
1316 }
1317 }
1318 }
1319 @Override
1320 public void addApps(ArrayList<ApplicationInfo> list) {
1321 addAppsWithoutInvalidate(list);
1322 invalidatePageData();
1323 }
1324 private int findAppByComponent(List<ApplicationInfo> list, ApplicationInfo item) {
1325 ComponentName removeComponent = item.intent.getComponent();
1326 int length = list.size();
1327 for (int i = 0; i < length; ++i) {
1328 ApplicationInfo info = list.get(i);
1329 if (info.intent.getComponent().equals(removeComponent)) {
1330 return i;
1331 }
1332 }
1333 return -1;
1334 }
1335 private void removeAppsWithoutInvalidate(ArrayList<ApplicationInfo> list) {
1336 // loop through all the apps and remove apps that have the same component
1337 int length = list.size();
1338 for (int i = 0; i < length; ++i) {
1339 ApplicationInfo info = list.get(i);
1340 int removeIndex = findAppByComponent(mApps, info);
1341 if (removeIndex > -1) {
1342 mApps.remove(removeIndex);
Winson Chung785d2eb2011-04-14 16:08:02 -07001343 }
1344 }
1345 }
1346 @Override
1347 public void removeApps(ArrayList<ApplicationInfo> list) {
1348 removeAppsWithoutInvalidate(list);
1349 invalidatePageData();
1350 }
1351 @Override
1352 public void updateApps(ArrayList<ApplicationInfo> list) {
1353 // We remove and re-add the updated applications list because it's properties may have
1354 // changed (ie. the title), and this will ensure that the items will be in their proper
1355 // place in the list.
1356 removeAppsWithoutInvalidate(list);
1357 addAppsWithoutInvalidate(list);
1358 invalidatePageData();
1359 }
Michael Jurka35aa14d2011-07-07 17:01:08 -07001360
Winson Chung785d2eb2011-04-14 16:08:02 -07001361 @Override
1362 public void reset() {
Adam Cohen0cd3b642011-10-14 14:58:00 -07001363 updateCurrentTab(0);
1364 invalidatePageData(0);
Winson Chung785d2eb2011-04-14 16:08:02 -07001365 }
Adam Cohen0cd3b642011-10-14 14:58:00 -07001366
1367 private AppsCustomizeTabHost getTabHost() {
1368 return (AppsCustomizeTabHost) mLauncher.findViewById(R.id.apps_customize_pane);
1369 }
1370
Winson Chung785d2eb2011-04-14 16:08:02 -07001371 @Override
1372 public void dumpState() {
1373 // TODO: Dump information related to current list of Applications, Widgets, etc.
1374 ApplicationInfo.dumpApplicationInfoList(LOG_TAG, "mApps", mApps);
1375 dumpAppWidgetProviderInfoList(LOG_TAG, "mWidgets", mWidgets);
1376 }
1377 private void dumpAppWidgetProviderInfoList(String tag, String label,
Winson Chungd2945262011-06-24 15:22:14 -07001378 ArrayList<Object> list) {
Winson Chung785d2eb2011-04-14 16:08:02 -07001379 Log.d(tag, label + " size=" + list.size());
Winson Chung1ed747a2011-05-03 16:18:34 -07001380 for (Object i: list) {
1381 if (i instanceof AppWidgetProviderInfo) {
1382 AppWidgetProviderInfo info = (AppWidgetProviderInfo) i;
1383 Log.d(tag, " label=\"" + info.label + "\" previewImage=" + info.previewImage
1384 + " resizeMode=" + info.resizeMode + " configure=" + info.configure
1385 + " initialLayout=" + info.initialLayout
1386 + " minWidth=" + info.minWidth + " minHeight=" + info.minHeight);
1387 } else if (i instanceof ResolveInfo) {
1388 ResolveInfo info = (ResolveInfo) i;
1389 Log.d(tag, " label=\"" + info.loadLabel(mPackageManager) + "\" icon="
1390 + info.icon);
1391 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001392 }
1393 }
1394 @Override
1395 public void surrender() {
1396 // TODO: If we are in the middle of any process (ie. for holographic outlines, etc) we
1397 // should stop this now.
1398 }
Winson Chung007c6982011-06-14 13:27:53 -07001399
Winson Chungb44b5242011-06-13 11:32:14 -07001400 /*
1401 * We load an extra page on each side to prevent flashes from scrolling and loading of the
1402 * widget previews in the background with the AsyncTasks.
1403 */
1404 protected int getAssociatedLowerPageBound(int page) {
1405 return Math.max(0, page - 2);
1406 }
1407 protected int getAssociatedUpperPageBound(int page) {
1408 final int count = getChildCount();
1409 return Math.min(page + 2, count - 1);
1410 }
Winson Chung6a0f57d2011-06-29 20:10:49 -07001411
1412 @Override
1413 protected String getCurrentPageDescription() {
1414 int page = (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
1415 int stringId = R.string.default_scroll_format;
Adam Cohen0cd3b642011-10-14 14:58:00 -07001416
1417 if (page < mNumAppsPages) {
Winson Chung6a0f57d2011-06-29 20:10:49 -07001418 stringId = R.string.apps_customize_apps_scroll_format;
Adam Cohen0cd3b642011-10-14 14:58:00 -07001419 } else {
1420 page -= mNumAppsPages;
Winson Chung6a0f57d2011-06-29 20:10:49 -07001421 stringId = R.string.apps_customize_widgets_scroll_format;
Winson Chung6a0f57d2011-06-29 20:10:49 -07001422 }
Adam Cohen0cd3b642011-10-14 14:58:00 -07001423
Winson Chung6a0f57d2011-06-29 20:10:49 -07001424 return String.format(mContext.getString(stringId), page + 1, getChildCount());
1425 }
Winson Chung785d2eb2011-04-14 16:08:02 -07001426}