blob: a7293c88b4d9c16bc9cb1c93751631f98bbdaaec [file] [log] [blame]
Winson Chung80baf5a2010-08-09 16:03:15 -07001/*
2 * Copyright (C) 2010 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 Chung5974adc2010-10-25 14:29:11 -070019import java.util.ArrayList;
20import java.util.Collections;
21import java.util.Comparator;
22import java.util.List;
Winson Chung80baf5a2010-08-09 16:03:15 -070023
24import android.appwidget.AppWidgetManager;
25import android.appwidget.AppWidgetProviderInfo;
26import android.content.ComponentName;
27import android.content.Context;
28import android.content.Intent;
29import android.content.pm.PackageManager;
30import android.content.pm.ResolveInfo;
31import android.content.res.Resources;
Winson Chunge3193b92010-09-10 11:44:42 -070032import android.content.res.TypedArray;
Winson Chung80baf5a2010-08-09 16:03:15 -070033import android.graphics.Bitmap;
Winson Chung5974adc2010-10-25 14:29:11 -070034import android.graphics.Bitmap.Config;
Winson Chung86f77532010-08-24 11:08:22 -070035import android.graphics.Canvas;
Winson Chung7da10252010-10-28 16:07:04 -070036import android.graphics.Color;
Winson Chung86f77532010-08-24 11:08:22 -070037import android.graphics.Rect;
Winson Chung80baf5a2010-08-09 16:03:15 -070038import android.graphics.Region.Op;
Winson Chung80baf5a2010-08-09 16:03:15 -070039import android.graphics.drawable.Drawable;
Winson Chung80baf5a2010-08-09 16:03:15 -070040import android.util.AttributeSet;
41import android.util.Log;
Winson Chungd0d43012010-09-26 17:26:45 -070042import android.view.ActionMode;
Winson Chunge3193b92010-09-10 11:44:42 -070043import android.view.Gravity;
Winson Chung80baf5a2010-08-09 16:03:15 -070044import android.view.LayoutInflater;
Winson Chungd0d43012010-09-26 17:26:45 -070045import android.view.Menu;
46import android.view.MenuItem;
Michael Jurka7426c422010-11-11 15:23:47 -080047import android.view.MotionEvent;
Winson Chung80baf5a2010-08-09 16:03:15 -070048import android.view.View;
Winson Chunge3193b92010-09-10 11:44:42 -070049import android.widget.ImageView;
50import android.widget.LinearLayout;
Winson Chung80baf5a2010-08-09 16:03:15 -070051import android.widget.TextView;
52
Winson Chung5974adc2010-10-25 14:29:11 -070053import com.android.launcher.R;
Winson Chung80baf5a2010-08-09 16:03:15 -070054
55public class CustomizePagedView extends PagedView
Michael Jurka7426c422010-11-11 15:23:47 -080056 implements View.OnLongClickListener, View.OnClickListener, View.OnTouchListener,
Winson Chungd0d43012010-09-26 17:26:45 -070057 DragSource, ActionMode.Callback {
Winson Chung80baf5a2010-08-09 16:03:15 -070058
59 public enum CustomizationType {
60 WidgetCustomization,
Winson Chung80baf5a2010-08-09 16:03:15 -070061 ShortcutCustomization,
Winson Chung5ffd8ea2010-09-23 18:40:29 -070062 WallpaperCustomization,
63 ApplicationCustomization
Winson Chung80baf5a2010-08-09 16:03:15 -070064 }
65
66 private static final String TAG = "CustomizeWorkspace";
67 private static final boolean DEBUG = false;
68
Michael Jurka7426c422010-11-11 15:23:47 -080069 private View mLastTouchedItem;
Winson Chung80baf5a2010-08-09 16:03:15 -070070 private Launcher mLauncher;
71 private DragController mDragController;
72 private PackageManager mPackageManager;
Michael Jurka7426c422010-11-11 15:23:47 -080073 private boolean mIsDragging;
74 private float mDragSlopeThreshold;
Winson Chung80baf5a2010-08-09 16:03:15 -070075
76 private CustomizationType mCustomizationType;
77
Winson Chunge3193b92010-09-10 11:44:42 -070078 // The layout used to emulate the workspace in resolve the cell dimensions of a widget
79 private PagedViewCellLayout mWorkspaceWidgetLayout;
80
81 // The mapping between the pages and the widgets that will be laid out on them
82 private ArrayList<ArrayList<AppWidgetProviderInfo>> mWidgetPages;
83
Winson Chung45e1d6e2010-11-09 17:19:49 -080084 // The max dimensions for the ImageView we use for displaying a widget
Winson Chunge3193b92010-09-10 11:44:42 -070085 private int mMaxWidgetWidth;
86
Winson Chung45e1d6e2010-11-09 17:19:49 -080087 // The max number of widget cells to take a "page" of widgets
Winson Chunge3193b92010-09-10 11:44:42 -070088 private int mMaxWidgetsCellHSpan;
89
Winson Chung45e1d6e2010-11-09 17:19:49 -080090 // The size of the items on the wallpaper tab
91 private int mWallpaperCellHSpan;
92
93 // The max dimensions for the ImageView we use for displaying a wallpaper
94 private int mMaxWallpaperWidth;
95
Winson Chunge3193b92010-09-10 11:44:42 -070096 // The raw sources of data for each of the different tabs of the customization page
Winson Chung80baf5a2010-08-09 16:03:15 -070097 private List<AppWidgetProviderInfo> mWidgetList;
Winson Chung80baf5a2010-08-09 16:03:15 -070098 private List<ResolveInfo> mShortcutList;
Winson Chunge8878e32010-09-15 20:37:09 -070099 private List<ResolveInfo> mWallpaperList;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700100 private List<ApplicationInfo> mApps;
Winson Chung80baf5a2010-08-09 16:03:15 -0700101
Winson Chunge3193b92010-09-10 11:44:42 -0700102 private static final int sMinWidgetCellHSpan = 2;
103 private static final int sMaxWidgetCellHSpan = 4;
104
Michael Jurka3125d9d2010-09-27 11:30:20 -0700105 private int mChoiceModeTitleText;
106
Winson Chunge3193b92010-09-10 11:44:42 -0700107 // The scale factor for widget previews inside the widget drawer
108 private static final float sScaleFactor = 0.75f;
Winson Chung80baf5a2010-08-09 16:03:15 -0700109
110 private final Canvas mCanvas = new Canvas();
111 private final LayoutInflater mInflater;
112
113 public CustomizePagedView(Context context) {
Winson Chunge3193b92010-09-10 11:44:42 -0700114 this(context, null, 0);
Winson Chung80baf5a2010-08-09 16:03:15 -0700115 }
116
117 public CustomizePagedView(Context context, AttributeSet attrs) {
Winson Chunge3193b92010-09-10 11:44:42 -0700118 this(context, attrs, 0);
119 }
120
121 public CustomizePagedView(Context context, AttributeSet attrs, int defStyle) {
122 super(context, attrs, defStyle);
123
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700124 TypedArray a;
Winson Chung45e1d6e2010-11-09 17:19:49 -0800125 a = context.obtainStyledAttributes(attrs, R.styleable.CustomizePagedView, defStyle, 0);
126 mWallpaperCellHSpan = a.getInt(R.styleable.CustomizePagedView_wallpaperCellSpanX, 4);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700127 mMaxWidgetsCellHSpan = a.getInt(R.styleable.CustomizePagedView_widgetCellCountX, 8);
128 a.recycle();
129 a = context.obtainStyledAttributes(attrs, R.styleable.PagedView, defStyle, 0);
130 mCellCountX = a.getInt(R.styleable.PagedView_cellCountX, 7);
131 mCellCountY = a.getInt(R.styleable.PagedView_cellCountY, 4);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700132 a.recycle();
Winson Chung45e1d6e2010-11-09 17:19:49 -0800133
Winson Chung80baf5a2010-08-09 16:03:15 -0700134 mCustomizationType = CustomizationType.WidgetCustomization;
Winson Chunge3193b92010-09-10 11:44:42 -0700135 mWidgetPages = new ArrayList<ArrayList<AppWidgetProviderInfo>>();
136 mWorkspaceWidgetLayout = new PagedViewCellLayout(context);
Winson Chung80baf5a2010-08-09 16:03:15 -0700137 mInflater = LayoutInflater.from(context);
Winson Chunge3193b92010-09-10 11:44:42 -0700138
Michael Jurka7426c422010-11-11 15:23:47 -0800139 final Resources r = context.getResources();
140 mDragSlopeThreshold =
141 r.getInteger(R.integer.config_customizationDrawerDragSlopeThreshold) / 100.0f;
142
Winson Chung80baf5a2010-08-09 16:03:15 -0700143 setVisibility(View.GONE);
144 setSoundEffectsEnabled(false);
Winson Chunge3193b92010-09-10 11:44:42 -0700145 setupWorkspaceLayout();
Winson Chung80baf5a2010-08-09 16:03:15 -0700146 }
147
Winson Chung7da10252010-10-28 16:07:04 -0700148 @Override
149 protected void init() {
150 super.init();
151 mCenterPagesVertically = false;
152 }
153
Winson Chung80baf5a2010-08-09 16:03:15 -0700154 public void setLauncher(Launcher launcher) {
155 Context context = getContext();
156 mLauncher = launcher;
157 mPackageManager = context.getPackageManager();
158 }
159
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700160 /**
161 * Sets the list of applications that launcher has loaded.
162 */
163 public void setApps(ArrayList<ApplicationInfo> list) {
164 mApps = list;
165 Collections.sort(mApps, LauncherModel.APP_NAME_COMPARATOR);
Winson Chung5f941722010-09-28 16:36:43 -0700166
167 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung10fefb12010-11-01 11:57:06 -0700168 invalidatePageDataAndIconCache();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700169 }
170
171 /**
172 * Convenience function to add new items to the set of applications that were previously loaded.
173 * Called by both updateApps() and setApps().
174 */
175 private void addAppsWithoutInvalidate(ArrayList<ApplicationInfo> list) {
176 // we add it in place, in alphabetical order
177 final int count = list.size();
178 for (int i = 0; i < count; ++i) {
179 final ApplicationInfo info = list.get(i);
180 final int index = Collections.binarySearch(mApps, info, LauncherModel.APP_NAME_COMPARATOR);
181 if (index < 0) {
182 mApps.add(-(index + 1), info);
183 }
184 }
185 }
186
187 /**
188 * Adds new applications to the loaded list, and notifies the paged view to update itself.
189 */
190 public void addApps(ArrayList<ApplicationInfo> list) {
191 addAppsWithoutInvalidate(list);
Winson Chung5f941722010-09-28 16:36:43 -0700192
193 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung10fefb12010-11-01 11:57:06 -0700194 invalidatePageDataAndIconCache();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700195 }
196
197 /**
198 * Convenience function to remove items to the set of applications that were previously loaded.
199 * Called by both updateApps() and removeApps().
200 */
201 private void removeAppsWithoutInvalidate(ArrayList<ApplicationInfo> list) {
202 // loop through all the apps and remove apps that have the same component
203 final int length = list.size();
204 for (int i = 0; i < length; ++i) {
205 final ApplicationInfo info = list.get(i);
206 int removeIndex = findAppByComponent(mApps, info);
207 if (removeIndex > -1) {
208 mApps.remove(removeIndex);
209 mPageViewIconCache.removeOutline(info);
210 }
211 }
212 }
213
214 /**
215 * Removes applications from the loaded list, and notifies the paged view to update itself.
216 */
217 public void removeApps(ArrayList<ApplicationInfo> list) {
218 removeAppsWithoutInvalidate(list);
Winson Chung5f941722010-09-28 16:36:43 -0700219
220 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung10fefb12010-11-01 11:57:06 -0700221 invalidatePageDataAndIconCache();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700222 }
223
224 /**
225 * Updates a set of applications from the loaded list, and notifies the paged view to update
226 * itself.
227 */
228 public void updateApps(ArrayList<ApplicationInfo> list) {
229 // We remove and re-add the updated applications list because it's properties may have
230 // changed (ie. the title), and this will ensure that the items will be in their proper
231 // place in the list.
232 removeAppsWithoutInvalidate(list);
233 addAppsWithoutInvalidate(list);
Winson Chung5f941722010-09-28 16:36:43 -0700234
235 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung10fefb12010-11-01 11:57:06 -0700236 invalidatePageDataAndIconCache();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700237 }
238
239 /**
240 * Convenience function to find matching ApplicationInfos for removal.
241 */
242 private int findAppByComponent(List<ApplicationInfo> list, ApplicationInfo item) {
243 ComponentName removeComponent = item.intent.getComponent();
244 final int length = list.size();
245 for (int i = 0; i < length; ++i) {
246 ApplicationInfo info = list.get(i);
247 if (info.intent.getComponent().equals(removeComponent)) {
248 return i;
249 }
250 }
251 return -1;
252 }
253
Winson Chung80baf5a2010-08-09 16:03:15 -0700254 public void update() {
Winson Chung80baf5a2010-08-09 16:03:15 -0700255 // get the list of widgets
256 mWidgetList = AppWidgetManager.getInstance(mLauncher).getInstalledProviders();
257 Collections.sort(mWidgetList, new Comparator<AppWidgetProviderInfo>() {
258 @Override
259 public int compare(AppWidgetProviderInfo object1, AppWidgetProviderInfo object2) {
260 return object1.label.compareTo(object2.label);
261 }
262 });
263
264 Comparator<ResolveInfo> resolveInfoComparator = new Comparator<ResolveInfo>() {
265 @Override
266 public int compare(ResolveInfo object1, ResolveInfo object2) {
267 return object1.loadLabel(mPackageManager).toString().compareTo(
268 object2.loadLabel(mPackageManager).toString());
269 }
270 };
271
Winson Chung80baf5a2010-08-09 16:03:15 -0700272 // get the list of shortcuts
273 Intent shortcutsIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
274 mShortcutList = mPackageManager.queryIntentActivities(shortcutsIntent, 0);
275 Collections.sort(mShortcutList, resolveInfoComparator);
276
Winson Chunge8878e32010-09-15 20:37:09 -0700277 // get the list of wallpapers
278 Intent wallpapersIntent = new Intent(Intent.ACTION_SET_WALLPAPER);
279 mWallpaperList = mPackageManager.queryIntentActivities(wallpapersIntent, 0);
280 Collections.sort(mWallpaperList, resolveInfoComparator);
281
Winson Chung10fefb12010-11-01 11:57:06 -0700282 invalidatePageDataAndIconCache();
283 }
284
285 private void invalidatePageDataAndIconCache() {
286 // Reset the icon cache
Winson Chung241c3b42010-08-25 16:53:03 -0700287 mPageViewIconCache.clear();
288
Winson Chunge3193b92010-09-10 11:44:42 -0700289 // Refresh all the tabs
Winson Chung80baf5a2010-08-09 16:03:15 -0700290 invalidatePageData();
291 }
292
293 public void setDragController(DragController dragger) {
294 mDragController = dragger;
295 }
296
297 public void setCustomizationFilter(CustomizationType filterType) {
298 mCustomizationType = filterType;
Winson Chung86f77532010-08-24 11:08:22 -0700299 setCurrentPage(0);
Winson Chungbbc60d82010-11-11 16:34:41 -0800300 updateCurrentPageScroll();
Winson Chung80baf5a2010-08-09 16:03:15 -0700301 invalidatePageData();
Winson Chungd0d43012010-09-26 17:26:45 -0700302
303 // End the current choice mode so that we don't carry selections across tabs
304 endChoiceMode();
Winson Chung80baf5a2010-08-09 16:03:15 -0700305 }
306
307 @Override
308 public void onDropCompleted(View target, boolean success) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700309 mLauncher.getWorkspace().onDragStopped();
Winson Chung80baf5a2010-08-09 16:03:15 -0700310 }
311
312 @Override
Winson Chunge8878e32010-09-15 20:37:09 -0700313 public void onClick(View v) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800314 // Return early if this is not initiated from a touch
315 if (!v.isInTouchMode()) return;
316 // Return early if we are still animating the pages
Winson Chung4f9e1072010-11-15 15:28:24 -0800317 if (mNextPage != INVALID_PAGE) return;
Winson Chunge8878e32010-09-15 20:37:09 -0700318
Winson Chungd0d43012010-09-26 17:26:45 -0700319 // On certain pages, we allow single tap to mark items as selected so that they can be
320 // dropped onto the mini workspaces
Michael Jurka3125d9d2010-09-27 11:30:20 -0700321 boolean enterChoiceMode = false;
Winson Chungd0d43012010-09-26 17:26:45 -0700322 switch (mCustomizationType) {
323 case WidgetCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700324 mChoiceModeTitleText = R.string.cab_widget_selection_text;
325 enterChoiceMode = true;
326 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700327 case ApplicationCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700328 mChoiceModeTitleText = R.string.cab_app_selection_text;
329 enterChoiceMode = true;
330 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700331 case ShortcutCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700332 mChoiceModeTitleText = R.string.cab_shortcut_selection_text;
333 enterChoiceMode = true;
334 break;
335 default:
336 break;
337 }
Winson Chungd0d43012010-09-26 17:26:45 -0700338
Michael Jurka3125d9d2010-09-27 11:30:20 -0700339 if (enterChoiceMode) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700340 final ItemInfo itemInfo = (ItemInfo) v.getTag();
Winson Chungd0d43012010-09-26 17:26:45 -0700341
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700342 Workspace w = mLauncher.getWorkspace();
343 int currentWorkspaceScreen = mLauncher.getCurrentWorkspaceScreen();
344 final CellLayout cl = (CellLayout)w.getChildAt(currentWorkspaceScreen);
Michael Jurkae17e19c2010-09-28 11:01:39 -0700345
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700346 animateClickFeedback(v, new Runnable() {
347 @Override
348 public void run() {
349 mLauncher.addExternalItemToScreen(itemInfo, cl);
350 }
351 });
Winson Chungd0d43012010-09-26 17:26:45 -0700352 return;
Winson Chungd0d43012010-09-26 17:26:45 -0700353 }
354
355 // Otherwise, we just handle the single click here
Winson Chunge8878e32010-09-15 20:37:09 -0700356 switch (mCustomizationType) {
357 case WallpaperCustomization:
358 // animate some feedback to the long press
Winson Chungd0d43012010-09-26 17:26:45 -0700359 final View clickView = v;
Winson Chunge8878e32010-09-15 20:37:09 -0700360 animateClickFeedback(v, new Runnable() {
361 @Override
362 public void run() {
363 // add the shortcut
Winson Chungd0d43012010-09-26 17:26:45 -0700364 ResolveInfo info = (ResolveInfo) clickView.getTag();
Winson Chung24ab2f12010-09-16 14:10:47 -0700365 Intent createWallpapersIntent = new Intent(Intent.ACTION_SET_WALLPAPER);
366 ComponentName name = new ComponentName(info.activityInfo.packageName,
367 info.activityInfo.name);
368 createWallpapersIntent.setComponent(name);
369 mLauncher.processWallpaper(createWallpapersIntent);
Winson Chunge8878e32010-09-15 20:37:09 -0700370 }
371 });
Winson Chungd0d43012010-09-26 17:26:45 -0700372 break;
373 default:
374 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700375 }
376 }
377
378 @Override
Winson Chung80baf5a2010-08-09 16:03:15 -0700379 public boolean onLongClick(View v) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800380 // Return early if this is not initiated from a touch
381 if (!v.isInTouchMode()) return false;
382 // Return early if we are still animating the pages
Winson Chung4f9e1072010-11-15 15:28:24 -0800383 if (mNextPage != INVALID_PAGE) return false;
Michael Jurka7426c422010-11-11 15:23:47 -0800384 return beginDragging(v);
385 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700386
Michael Jurka7426c422010-11-11 15:23:47 -0800387 @Override
388 public boolean onTouch(View v, MotionEvent event) {
389 mLastTouchedItem = v;
390 return false;
391 }
392
393 /*
394 * Determines if we should change the touch state to start scrolling after the
395 * user moves their touch point too far.
396 */
397 protected void determineScrollingStart(MotionEvent ev) {
398 if (!mIsDragging) super.determineScrollingStart(ev);
399 }
400
401 /*
402 * Determines if we should change the touch state to start dragging after the
403 * user moves their touch point far enough.
404 */
405 protected void determineDraggingStart(MotionEvent ev) {
406 /*
407 * Locally do absolute value. mLastMotionX is set to the y value
408 * of the down event.
409 */
410 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
411 final float x = ev.getX(pointerIndex);
412 final float y = ev.getY(pointerIndex);
413 final int xDiff = (int) Math.abs(x - mLastMotionX);
414 final int yDiff = (int) Math.abs(y - mLastMotionY);
415
416 final int touchSlop = mTouchSlop;
417 boolean yMoved = yDiff > touchSlop;
418 boolean isUpwardMotion = (yDiff / (float) xDiff) > mDragSlopeThreshold;
419
420 if (isUpwardMotion && yMoved) {
421 // Drag if the user moved far enough along the Y axis
422 beginDragging(mLastTouchedItem);
423
424 // Cancel any pending longpress
425 if (mAllowLongPress) {
426 mAllowLongPress = false;
427 // Try canceling the long press. It could also have been scheduled
428 // by a distant descendant, so use the mAllowLongPress flag to block
429 // everything
430 final View currentPage = getPageAt(mCurrentPage);
431 if (currentPage != null) {
432 currentPage.cancelLongPress();
433 }
434 }
435 }
436 }
437
438 @Override
439 public boolean onInterceptTouchEvent(MotionEvent ev) {
440 final int action = ev.getAction();
441 switch (action & MotionEvent.ACTION_MASK) {
442 case MotionEvent.ACTION_DOWN:
443 mIsDragging = false;
444 break;
445 case MotionEvent.ACTION_MOVE:
446 if (mTouchState != TOUCH_STATE_SCROLLING && !mIsDragging) {
447 determineDraggingStart(ev);
448 }
449 break;
450 }
451 return super.onInterceptTouchEvent(ev);
452 }
453
454 @Override
455 public boolean onTouchEvent(MotionEvent ev) {
456 final int action = ev.getAction();
457 switch (action & MotionEvent.ACTION_MASK) {
458 case MotionEvent.ACTION_DOWN:
459 mIsDragging = false;
460 break;
461 case MotionEvent.ACTION_MOVE:
462 if (mTouchState != TOUCH_STATE_SCROLLING && !mIsDragging) {
463 determineDraggingStart(ev);
464 }
465 break;
466 }
467 return super.onTouchEvent(ev);
468 }
469
470 private boolean beginDragging(View v) {
Winson Chungd0d43012010-09-26 17:26:45 -0700471 // End the current choice mode before we start dragging anything
472 if (isChoiceMode(CHOICE_MODE_SINGLE)) {
473 endChoiceMode();
474 }
Michael Jurka7426c422010-11-11 15:23:47 -0800475 mIsDragging = true;
Winson Chungd0d43012010-09-26 17:26:45 -0700476
477 PendingAddItemInfo createItemInfo;
Winson Chung80baf5a2010-08-09 16:03:15 -0700478 switch (mCustomizationType) {
479 case WidgetCustomization:
Winson Chunge3193b92010-09-10 11:44:42 -0700480 // Get the icon as the drag representation
Winson Chungd0d43012010-09-26 17:26:45 -0700481 final LinearLayout l = (LinearLayout) v;
482 final Drawable icon = ((ImageView) l.findViewById(R.id.widget_preview)).getDrawable();
Winson Chunge3193b92010-09-10 11:44:42 -0700483 Bitmap b = Bitmap.createBitmap(icon.getIntrinsicWidth(), icon.getIntrinsicHeight(),
484 Bitmap.Config.ARGB_8888);
485 Canvas c = new Canvas(b);
486 icon.draw(c);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700487 PendingAddWidgetInfo createWidgetInfo = (PendingAddWidgetInfo) v.getTag();
Michael Jurkaa63c4522010-08-19 13:52:27 -0700488
Michael Jurka3e7c7632010-10-02 16:01:03 -0700489 mLauncher.getWorkspace().onDragStartedWithItemMinSize(
490 createWidgetInfo.minWidth, createWidgetInfo.minHeight);
491 mDragController.startDrag(v, b, this, createWidgetInfo, DragController.DRAG_ACTION_COPY,
Winson Chungd0d43012010-09-26 17:26:45 -0700492 null);
Winson Chunge3193b92010-09-10 11:44:42 -0700493
494 // Cleanup the icon
495 b.recycle();
Winson Chung80baf5a2010-08-09 16:03:15 -0700496 return true;
Winson Chung80baf5a2010-08-09 16:03:15 -0700497 case ShortcutCustomization:
Winson Chungd0d43012010-09-26 17:26:45 -0700498 createItemInfo = (PendingAddItemInfo) v.getTag();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700499 mDragController.startDrag(
500 v, this, createItemInfo, DragController.DRAG_ACTION_COPY, null);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700501 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1);
Winson Chung80baf5a2010-08-09 16:03:15 -0700502 return true;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700503 case ApplicationCustomization:
504 // Pick up the application for dropping
505 ApplicationInfo app = (ApplicationInfo) v.getTag();
506 app = new ApplicationInfo(app);
507
508 mDragController.startDrag(v, this, app, DragController.DRAG_ACTION_COPY);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700509 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700510 return true;
Winson Chung80baf5a2010-08-09 16:03:15 -0700511 }
512 return false;
513 }
514
Winson Chunge3193b92010-09-10 11:44:42 -0700515 /**
516 * Pre-processes the layout of the different widget pages.
517 * @return the number of pages of widgets that we have
518 */
Winson Chung80baf5a2010-08-09 16:03:15 -0700519 private int relayoutWidgets() {
Winson Chunge3193b92010-09-10 11:44:42 -0700520 if (mWidgetList.isEmpty()) return 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700521
Winson Chunge3193b92010-09-10 11:44:42 -0700522 // create a new page for the first set of widgets
523 ArrayList<AppWidgetProviderInfo> newPage = new ArrayList<AppWidgetProviderInfo>();
Winson Chung80baf5a2010-08-09 16:03:15 -0700524 mWidgetPages.clear();
Winson Chunge3193b92010-09-10 11:44:42 -0700525 mWidgetPages.add(newPage);
526
527 // do this until we have no more widgets to lay out
528 final int maxNumCellsPerRow = mMaxWidgetsCellHSpan;
529 final int widgetCount = mWidgetList.size();
530 int numCellsInRow = 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700531 for (int i = 0; i < widgetCount; ++i) {
Winson Chunge3193b92010-09-10 11:44:42 -0700532 final AppWidgetProviderInfo info = mWidgetList.get(i);
Winson Chung80baf5a2010-08-09 16:03:15 -0700533
Winson Chunge3193b92010-09-10 11:44:42 -0700534 // determine the size of the current widget
535 int cellSpanX = Math.max(sMinWidgetCellHSpan, Math.min(sMaxWidgetCellHSpan,
536 mWorkspaceWidgetLayout.estimateCellHSpan(info.minWidth)));
Winson Chung80baf5a2010-08-09 16:03:15 -0700537
Winson Chunge3193b92010-09-10 11:44:42 -0700538 // create a new page if necessary
539 if ((numCellsInRow + cellSpanX) > maxNumCellsPerRow) {
540 numCellsInRow = 0;
541 newPage = new ArrayList<AppWidgetProviderInfo>();
542 mWidgetPages.add(newPage);
Winson Chung80baf5a2010-08-09 16:03:15 -0700543 }
544
Winson Chunge3193b92010-09-10 11:44:42 -0700545 // add the item to the current page
546 newPage.add(info);
547 numCellsInRow += cellSpanX;
Winson Chung80baf5a2010-08-09 16:03:15 -0700548 }
Winson Chunge3193b92010-09-10 11:44:42 -0700549
Winson Chung80baf5a2010-08-09 16:03:15 -0700550 return mWidgetPages.size();
551 }
552
Winson Chunge3193b92010-09-10 11:44:42 -0700553 /**
Winson Chung7da10252010-10-28 16:07:04 -0700554 * Helper function to draw a drawable to the specified canvas with the specified bounds.
555 */
Winson Chung45e1d6e2010-11-09 17:19:49 -0800556 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h) {
Winson Chung7da10252010-10-28 16:07:04 -0700557 if (bitmap != null) mCanvas.setBitmap(bitmap);
558 mCanvas.save();
Winson Chung45e1d6e2010-11-09 17:19:49 -0800559 d.setBounds(x, y, x+w, y+h);
Winson Chung7da10252010-10-28 16:07:04 -0700560 d.draw(mCanvas);
561 mCanvas.restore();
562 }
563
564 /**
Winson Chung45e1d6e2010-11-09 17:19:49 -0800565 * This method will extract the preview image specified by the wallpaper source provider (if it
566 * exists) otherwise, it will try to generate a default image preview.
567 */
568 private Drawable getWallpaperPreview(ResolveInfo info) {
569 // To be implemented later: resolving the up-to-date wallpaper thumbnail
570
571 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
572 final int dim = mWorkspaceWidgetLayout.estimateCellWidth(mWallpaperCellHSpan);
573 Resources resources = mLauncher.getResources();
574
575 // Create a new bitmap to hold the widget preview
576 int width = (int) (dim * sScaleFactor);
577 int height = (int) (dim * sScaleFactor);
578 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
579 final Drawable background = resources.getDrawable(R.drawable.default_widget_preview);
580 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
581
582 // Draw the icon flush left
583 try {
584 final IconCache iconCache =
585 ((LauncherApplication) mLauncher.getApplication()).getIconCache();
586 Drawable icon = new FastBitmapDrawable(Utilities.createIconBitmap(
587 iconCache.getFullResIcon(info, mPackageManager), mContext));
588
589 final int iconSize = minDim / 2;
590 final int offset = iconSize / 4;
591 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
592 } catch (Resources.NotFoundException e) {
593 // if we can't find the icon, then just don't draw it
594 }
595
596 Drawable drawable = new FastBitmapDrawable(bitmap);
597 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
598 return drawable;
599 }
600
601 /**
Winson Chunge3193b92010-09-10 11:44:42 -0700602 * This method will extract the preview image specified by the widget developer (if it exists),
603 * otherwise, it will try to generate a default image preview with the widget's package icon.
Winson Chung45e1d6e2010-11-09 17:19:49 -0800604 * @return the drawable that will be used and sized in the ImageView to represent the widget
Winson Chunge3193b92010-09-10 11:44:42 -0700605 */
Winson Chung94ba5b12010-11-08 17:17:47 -0800606 private Drawable getWidgetPreview(AppWidgetProviderInfo info) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800607 final PackageManager packageManager = mPackageManager;
Winson Chung80baf5a2010-08-09 16:03:15 -0700608 String packageName = info.provider.getPackageName();
609 Drawable drawable = null;
610 if (info.previewImage != 0) {
611 drawable = packageManager.getDrawable(packageName, info.previewImage, null);
612 if (drawable == null) {
613 Log.w(TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
614 + " for provider: " + info.provider);
Winson Chung80baf5a2010-08-09 16:03:15 -0700615 }
616 }
617
618 // If we don't have a preview image, create a default one
Winson Chung7da10252010-10-28 16:07:04 -0700619 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
620 final int maxDim = mWorkspaceWidgetLayout.estimateCellWidth(3);
Winson Chung80baf5a2010-08-09 16:03:15 -0700621 if (drawable == null) {
622 Resources resources = mLauncher.getResources();
623
Winson Chung80baf5a2010-08-09 16:03:15 -0700624 // Create a new bitmap to hold the widget preview
Winson Chunge3193b92010-09-10 11:44:42 -0700625 int width = (int) (Math.max(minDim, Math.min(maxDim, info.minWidth)) * sScaleFactor);
626 int height = (int) (Math.max(minDim, Math.min(maxDim, info.minHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700627 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
628 final Drawable background = resources.getDrawable(R.drawable.default_widget_preview);
629 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
Winson Chung80baf5a2010-08-09 16:03:15 -0700630
Winson Chung45e1d6e2010-11-09 17:19:49 -0800631 // Draw the icon flush left
Winson Chung80baf5a2010-08-09 16:03:15 -0700632 try {
Winson Chung80baf5a2010-08-09 16:03:15 -0700633 Drawable icon = null;
Winson Chunge3193b92010-09-10 11:44:42 -0700634 if (info.icon > 0) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700635 icon = packageManager.getDrawable(packageName, info.icon, null);
Winson Chung5f941722010-09-28 16:36:43 -0700636 }
637 if (icon == null) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700638 icon = resources.getDrawable(R.drawable.ic_launcher_application);
639 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700640
Winson Chunge3193b92010-09-10 11:44:42 -0700641 final int iconSize = minDim / 2;
642 final int offset = iconSize / 4;
Winson Chung45e1d6e2010-11-09 17:19:49 -0800643 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
Winson Chung80baf5a2010-08-09 16:03:15 -0700644 } catch (Resources.NotFoundException e) {
645 // if we can't find the icon, then just don't draw it
646 }
647
Winson Chungb3347bb2010-08-19 14:51:28 -0700648 drawable = new FastBitmapDrawable(bitmap);
Winson Chung7da10252010-10-28 16:07:04 -0700649 } else {
650 // Scale down the preview if necessary
Winson Chung94ba5b12010-11-08 17:17:47 -0800651 final float imageWidth = drawable.getIntrinsicWidth();
652 final float imageHeight = drawable.getIntrinsicHeight();
653 final float aspect = (float) imageWidth / imageHeight;
654 final int scaledWidth =
655 (int) (Math.max(minDim, Math.min(maxDim, imageWidth)) * sScaleFactor);
656 final int scaledHeight =
657 (int) (Math.max(minDim, Math.min(maxDim, imageHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700658 int width;
659 int height;
Winson Chung94ba5b12010-11-08 17:17:47 -0800660 if (aspect >= 1.0f) {
Winson Chung7da10252010-10-28 16:07:04 -0700661 width = scaledWidth;
Winson Chung94ba5b12010-11-08 17:17:47 -0800662 height = (int) (((float) scaledWidth / imageWidth) * imageHeight);
Winson Chung7da10252010-10-28 16:07:04 -0700663 } else {
664 height = scaledHeight;
Winson Chung94ba5b12010-11-08 17:17:47 -0800665 width = (int) (((float) scaledHeight / imageHeight) * imageWidth);
Winson Chung7da10252010-10-28 16:07:04 -0700666 }
667
668 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
669 renderDrawableToBitmap(drawable, bitmap, 0, 0, width, height);
670
671 drawable = new FastBitmapDrawable(bitmap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700672 }
673 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
674 return drawable;
675 }
676
677 private void setupPage(PagedViewCellLayout layout) {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700678 layout.setCellCount(mCellCountX, mCellCountY);
679 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop, mPageLayoutPaddingRight,
680 mPageLayoutPaddingBottom);
Winson Chungef0066b2010-10-21 11:55:00 -0700681 layout.setGap(mPageLayoutWidthGap, mPageLayoutHeightGap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700682 }
683
Winson Chunge3193b92010-09-10 11:44:42 -0700684 private void setupWorkspaceLayout() {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700685 mWorkspaceWidgetLayout.setCellCount(mCellCountX, mCellCountY);
Winson Chunge3193b92010-09-10 11:44:42 -0700686 mWorkspaceWidgetLayout.setPadding(20, 10, 20, 0);
687
688 mMaxWidgetWidth = mWorkspaceWidgetLayout.estimateCellWidth(sMaxWidgetCellHSpan);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800689 mMaxWallpaperWidth = mWorkspaceWidgetLayout.estimateCellWidth(mWallpaperCellHSpan);
Winson Chunge3193b92010-09-10 11:44:42 -0700690 }
691
Winson Chung80baf5a2010-08-09 16:03:15 -0700692 private void syncWidgetPages() {
693 if (mWidgetList == null) return;
694
Winson Chunge3193b92010-09-10 11:44:42 -0700695 // we need to repopulate with the LinearLayout layout for the widget pages
696 removeAllViews();
Winson Chung80baf5a2010-08-09 16:03:15 -0700697 int numPages = relayoutWidgets();
Winson Chunge3193b92010-09-10 11:44:42 -0700698 for (int i = 0; i < numPages; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800699 LinearLayout layout = new PagedViewExtendedLayout(getContext());
Winson Chunge3193b92010-09-10 11:44:42 -0700700 layout.setGravity(Gravity.CENTER_HORIZONTAL);
Winson Chungef0066b2010-10-21 11:55:00 -0700701 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
702 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
Winson Chunge3193b92010-09-10 11:44:42 -0700703
Winson Chunge22a8e92010-11-12 13:40:58 -0800704 addView(layout, new LinearLayout.LayoutParams(
705 LinearLayout.LayoutParams.WRAP_CONTENT,
706 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung80baf5a2010-08-09 16:03:15 -0700707 }
708 }
709
710 private void syncWidgetPageItems(int page) {
711 // ensure that we have the right number of items on the pages
Winson Chunge3193b92010-09-10 11:44:42 -0700712 LinearLayout layout = (LinearLayout) getChildAt(page);
713 final ArrayList<AppWidgetProviderInfo> list = mWidgetPages.get(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700714 final int count = list.size();
715 layout.removeAllViews();
716 for (int i = 0; i < count; ++i) {
Winson Chung68846fd2010-10-29 11:00:27 -0700717 final AppWidgetProviderInfo info = (AppWidgetProviderInfo) list.get(i);
718 final PendingAddWidgetInfo createItemInfo = new PendingAddWidgetInfo(info, null, null);
Winson Chungd0d43012010-09-26 17:26:45 -0700719
Winson Chunge3193b92010-09-10 11:44:42 -0700720 LinearLayout l = (LinearLayout) mInflater.inflate(
721 R.layout.customize_paged_view_widget, layout, false);
Winson Chungd0d43012010-09-26 17:26:45 -0700722 l.setTag(createItemInfo);
723 l.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800724 l.setOnTouchListener(this);
Winson Chunge3193b92010-09-10 11:44:42 -0700725 l.setOnLongClickListener(this);
Winson Chung80baf5a2010-08-09 16:03:15 -0700726
Winson Chung94ba5b12010-11-08 17:17:47 -0800727 final Drawable icon = getWidgetPreview(info);
Michael Jurka9987a5c2010-10-08 16:58:12 -0700728
729 int[] spans = CellLayout.rectToCell(getResources(), info.minWidth, info.minHeight, null);
730 final int hSpan = spans[0];
731 final int vSpan = spans[1];
Winson Chunge3193b92010-09-10 11:44:42 -0700732
Winson Chungd0d43012010-09-26 17:26:45 -0700733 ImageView image = (ImageView) l.findViewById(R.id.widget_preview);
Winson Chunge3193b92010-09-10 11:44:42 -0700734 image.setMaxWidth(mMaxWidgetWidth);
735 image.setImageDrawable(icon);
Winson Chungd0d43012010-09-26 17:26:45 -0700736 TextView name = (TextView) l.findViewById(R.id.widget_name);
Winson Chunge3193b92010-09-10 11:44:42 -0700737 name.setText(info.label);
Winson Chungd0d43012010-09-26 17:26:45 -0700738 TextView dims = (TextView) l.findViewById(R.id.widget_dims);
Winson Chung3a476782010-09-15 15:21:55 -0700739 dims.setText(mContext.getString(R.string.widget_dims_format, hSpan, vSpan));
Winson Chunge3193b92010-09-10 11:44:42 -0700740
741 layout.addView(l);
Winson Chung80baf5a2010-08-09 16:03:15 -0700742 }
743 }
744
Winson Chung45e1d6e2010-11-09 17:19:49 -0800745 private void syncWallpaperPages() {
746 if (mWallpaperList == null) return;
747
748 // We need to repopulate the LinearLayout for the wallpaper pages
749 removeAllViews();
750 int numPages = (int) Math.ceil((float) (mWallpaperList.size() * mWallpaperCellHSpan) /
751 mMaxWidgetsCellHSpan);
752 for (int i = 0; i < numPages; ++i) {
753 LinearLayout layout = new PagedViewExtendedLayout(getContext());
754 layout.setGravity(Gravity.CENTER_HORIZONTAL);
755 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
756 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
757
Winson Chunge22a8e92010-11-12 13:40:58 -0800758 addView(layout, new LinearLayout.LayoutParams(
759 LinearLayout.LayoutParams.WRAP_CONTENT,
760 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800761 }
762 }
763
764 private void syncWallpaperPageItems(int page) {
765 // Load the items on to the pages
766 LinearLayout layout = (LinearLayout) getChildAt(page);
767 layout.removeAllViews();
768 final int count = mWallpaperList.size();
769 for (int i = 0; i < count; ++i) {
770 final ResolveInfo info = mWallpaperList.get(i);
771
772 LinearLayout l = (LinearLayout) mInflater.inflate(
773 R.layout.customize_paged_view_wallpaper, layout, false);
774 l.setTag(info);
775 l.setOnClickListener(this);
776
777 final Drawable icon = getWallpaperPreview(info);
778
779 ImageView image = (ImageView) l.findViewById(R.id.wallpaper_preview);
780 image.setMaxWidth(mMaxWidgetWidth);
781 image.setImageDrawable(icon);
782 TextView name = (TextView) l.findViewById(R.id.wallpaper_name);
783 name.setText(info.loadLabel(mPackageManager));
784
785 layout.addView(l);
786 }
787 }
788
Winson Chung80baf5a2010-08-09 16:03:15 -0700789 private void syncListPages(List<ResolveInfo> list) {
Winson Chunge3193b92010-09-10 11:44:42 -0700790 // we need to repopulate with PagedViewCellLayouts
791 removeAllViews();
792
Winson Chung80baf5a2010-08-09 16:03:15 -0700793 // ensure that we have the right number of pages
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700794 int numPages = (int) Math.ceil((float) list.size() / (mCellCountX * mCellCountY));
Winson Chunge3193b92010-09-10 11:44:42 -0700795 for (int i = 0; i < numPages; ++i) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700796 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
797 setupPage(layout);
798 addView(layout);
799 }
800 }
801
802 private void syncListPageItems(int page, List<ResolveInfo> list) {
803 // ensure that we have the right number of items on the pages
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700804 int numCells = mCellCountX * mCellCountY;
Winson Chung80baf5a2010-08-09 16:03:15 -0700805 int startIndex = page * numCells;
806 int endIndex = Math.min(startIndex + numCells, list.size());
807 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
808 // TODO: we can optimize by just re-applying to existing views
809 layout.removeAllViews();
810 for (int i = startIndex; i < endIndex; ++i) {
811 ResolveInfo info = list.get(i);
Winson Chungd0d43012010-09-26 17:26:45 -0700812 PendingAddItemInfo createItemInfo = new PendingAddItemInfo();
813
Winson Chung241c3b42010-08-25 16:53:03 -0700814 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
815 R.layout.customize_paged_view_item, layout, false);
Michael Jurkac9a96192010-11-01 11:52:08 -0700816 icon.applyFromResolveInfo(info, mPackageManager, mPageViewIconCache,
817 ((LauncherApplication)mLauncher.getApplication()).getIconCache());
Winson Chungd0d43012010-09-26 17:26:45 -0700818 switch (mCustomizationType) {
819 case WallpaperCustomization:
Winson Chunge8878e32010-09-15 20:37:09 -0700820 icon.setOnClickListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700821 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700822 case ShortcutCustomization:
823 createItemInfo.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
824 createItemInfo.componentName = new ComponentName(info.activityInfo.packageName,
825 info.activityInfo.name);
826 icon.setTag(createItemInfo);
827 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800828 icon.setOnTouchListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700829 icon.setOnLongClickListener(this);
830 break;
831 default:
832 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700833 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700834
835 final int index = i - startIndex;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700836 final int x = index % mCellCountX;
837 final int y = index / mCellCountX;
838 setupPage(layout);
839 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
840 }
841 }
842
843 private void syncAppPages() {
844 if (mApps == null) return;
845
846 // We need to repopulate with PagedViewCellLayouts
847 removeAllViews();
848
849 // Ensure that we have the right number of pages
850 int numPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
851 for (int i = 0; i < numPages; ++i) {
852 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
853 setupPage(layout);
854 addView(layout);
855 }
856 }
857
858 private void syncAppPageItems(int page) {
859 if (mApps == null) return;
860
861 // ensure that we have the right number of items on the pages
862 int numCells = mCellCountX * mCellCountY;
863 int startIndex = page * numCells;
864 int endIndex = Math.min(startIndex + numCells, mApps.size());
865 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
866 // TODO: we can optimize by just re-applying to existing views
867 layout.removeAllViews();
868 for (int i = startIndex; i < endIndex; ++i) {
869 final ApplicationInfo info = mApps.get(i);
870 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
871 R.layout.all_apps_paged_view_application, layout, false);
Winson Chung7da10252010-10-28 16:07:04 -0700872 icon.applyFromApplicationInfo(info, mPageViewIconCache, true);
Winson Chungd0d43012010-09-26 17:26:45 -0700873 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800874 icon.setOnTouchListener(this);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700875 icon.setOnLongClickListener(this);
876
877 final int index = i - startIndex;
878 final int x = index % mCellCountX;
879 final int y = index / mCellCountX;
Winson Chunge3193b92010-09-10 11:44:42 -0700880 setupPage(layout);
Winson Chung241c3b42010-08-25 16:53:03 -0700881 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
Winson Chung80baf5a2010-08-09 16:03:15 -0700882 }
883 }
884
Winson Chung80baf5a2010-08-09 16:03:15 -0700885 @Override
886 public void syncPages() {
Winson Chunge3193b92010-09-10 11:44:42 -0700887 boolean centerPagedViewCellLayouts = false;
Winson Chung80baf5a2010-08-09 16:03:15 -0700888 switch (mCustomizationType) {
889 case WidgetCustomization:
890 syncWidgetPages();
891 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700892 case ShortcutCustomization:
893 syncListPages(mShortcutList);
Winson Chunge3193b92010-09-10 11:44:42 -0700894 centerPagedViewCellLayouts = true;
Winson Chung80baf5a2010-08-09 16:03:15 -0700895 break;
896 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -0800897 syncWallpaperPages();
Winson Chung80baf5a2010-08-09 16:03:15 -0700898 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700899 case ApplicationCustomization:
900 syncAppPages();
901 centerPagedViewCellLayouts = false;
902 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700903 default:
904 removeAllViews();
Winson Chung86f77532010-08-24 11:08:22 -0700905 setCurrentPage(0);
Winson Chung80baf5a2010-08-09 16:03:15 -0700906 break;
907 }
908
909 // only try and center the page if there is one page
910 final int childCount = getChildCount();
Winson Chunge3193b92010-09-10 11:44:42 -0700911 if (centerPagedViewCellLayouts) {
912 if (childCount == 1) {
913 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(0);
914 layout.enableCenteredContent(true);
915 } else {
916 for (int i = 0; i < childCount; ++i) {
917 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(i);
918 layout.enableCenteredContent(false);
919 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700920 }
921 }
922
923 // bound the current page
Winson Chung86f77532010-08-24 11:08:22 -0700924 setCurrentPage(Math.max(0, Math.min(childCount - 1, getCurrentPage())));
Winson Chung80baf5a2010-08-09 16:03:15 -0700925 }
926
927 @Override
928 public void syncPageItems(int page) {
929 switch (mCustomizationType) {
930 case WidgetCustomization:
931 syncWidgetPageItems(page);
932 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700933 case ShortcutCustomization:
934 syncListPageItems(page, mShortcutList);
935 break;
936 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -0800937 syncWallpaperPageItems(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700938 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700939 case ApplicationCustomization:
940 syncAppPageItems(page);
941 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700942 }
943 }
Winson Chunge3193b92010-09-10 11:44:42 -0700944
Winson Chungd0d43012010-09-26 17:26:45 -0700945 @Override
Winson Chunge3193b92010-09-10 11:44:42 -0700946 protected int getAssociatedLowerPageBound(int page) {
947 return 0;
948 }
Winson Chungd0d43012010-09-26 17:26:45 -0700949 @Override
Winson Chunge3193b92010-09-10 11:44:42 -0700950 protected int getAssociatedUpperPageBound(int page) {
951 return getChildCount();
952 }
Winson Chungd0d43012010-09-26 17:26:45 -0700953
954 @Override
955 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Michael Jurka3125d9d2010-09-27 11:30:20 -0700956 mode.setTitle(mChoiceModeTitleText);
Winson Chungd0d43012010-09-26 17:26:45 -0700957 return true;
958 }
959
960 @Override
961 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
962 return true;
963 }
964
965 @Override
966 public void onDestroyActionMode(ActionMode mode) {
967 endChoiceMode();
968 }
969
970 @Override
971 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
972 return false;
973 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700974}