blob: 6db6aa9a98dea2c012ff12a8177d1417ee5d6c5f [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 Chung649a4ca2010-11-18 10:38:13 -0800305 // Reset the touch item (if we are mid-dragging)
306 mLastTouchedItem = null;
Winson Chung80baf5a2010-08-09 16:03:15 -0700307 }
308
309 @Override
310 public void onDropCompleted(View target, boolean success) {
Michael Jurka3e7c7632010-10-02 16:01:03 -0700311 mLauncher.getWorkspace().onDragStopped();
Winson Chung80baf5a2010-08-09 16:03:15 -0700312 }
313
314 @Override
Winson Chunge8878e32010-09-15 20:37:09 -0700315 public void onClick(View v) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800316 // Return early if this is not initiated from a touch
317 if (!v.isInTouchMode()) return;
318 // Return early if we are still animating the pages
Winson Chung4f9e1072010-11-15 15:28:24 -0800319 if (mNextPage != INVALID_PAGE) return;
Winson Chunge8878e32010-09-15 20:37:09 -0700320
Winson Chungd0d43012010-09-26 17:26:45 -0700321 // On certain pages, we allow single tap to mark items as selected so that they can be
322 // dropped onto the mini workspaces
Michael Jurka3125d9d2010-09-27 11:30:20 -0700323 boolean enterChoiceMode = false;
Winson Chungd0d43012010-09-26 17:26:45 -0700324 switch (mCustomizationType) {
325 case WidgetCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700326 mChoiceModeTitleText = R.string.cab_widget_selection_text;
327 enterChoiceMode = true;
328 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700329 case ApplicationCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700330 mChoiceModeTitleText = R.string.cab_app_selection_text;
331 enterChoiceMode = true;
332 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700333 case ShortcutCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700334 mChoiceModeTitleText = R.string.cab_shortcut_selection_text;
335 enterChoiceMode = true;
336 break;
337 default:
338 break;
339 }
Winson Chungd0d43012010-09-26 17:26:45 -0700340
Michael Jurka3125d9d2010-09-27 11:30:20 -0700341 if (enterChoiceMode) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700342 final ItemInfo itemInfo = (ItemInfo) v.getTag();
Winson Chungd0d43012010-09-26 17:26:45 -0700343
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700344 Workspace w = mLauncher.getWorkspace();
345 int currentWorkspaceScreen = mLauncher.getCurrentWorkspaceScreen();
346 final CellLayout cl = (CellLayout)w.getChildAt(currentWorkspaceScreen);
Michael Jurkae17e19c2010-09-28 11:01:39 -0700347
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700348 animateClickFeedback(v, new Runnable() {
349 @Override
350 public void run() {
351 mLauncher.addExternalItemToScreen(itemInfo, cl);
352 }
353 });
Winson Chungd0d43012010-09-26 17:26:45 -0700354 return;
Winson Chungd0d43012010-09-26 17:26:45 -0700355 }
356
357 // Otherwise, we just handle the single click here
Winson Chunge8878e32010-09-15 20:37:09 -0700358 switch (mCustomizationType) {
359 case WallpaperCustomization:
360 // animate some feedback to the long press
Winson Chungd0d43012010-09-26 17:26:45 -0700361 final View clickView = v;
Winson Chunge8878e32010-09-15 20:37:09 -0700362 animateClickFeedback(v, new Runnable() {
363 @Override
364 public void run() {
365 // add the shortcut
Winson Chungd0d43012010-09-26 17:26:45 -0700366 ResolveInfo info = (ResolveInfo) clickView.getTag();
Winson Chung24ab2f12010-09-16 14:10:47 -0700367 Intent createWallpapersIntent = new Intent(Intent.ACTION_SET_WALLPAPER);
368 ComponentName name = new ComponentName(info.activityInfo.packageName,
369 info.activityInfo.name);
370 createWallpapersIntent.setComponent(name);
371 mLauncher.processWallpaper(createWallpapersIntent);
Winson Chunge8878e32010-09-15 20:37:09 -0700372 }
373 });
Winson Chungd0d43012010-09-26 17:26:45 -0700374 break;
375 default:
376 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700377 }
378 }
379
380 @Override
Winson Chung80baf5a2010-08-09 16:03:15 -0700381 public boolean onLongClick(View v) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800382 // Return early if this is not initiated from a touch
383 if (!v.isInTouchMode()) return false;
384 // Return early if we are still animating the pages
Winson Chung4f9e1072010-11-15 15:28:24 -0800385 if (mNextPage != INVALID_PAGE) return false;
Michael Jurka7426c422010-11-11 15:23:47 -0800386 return beginDragging(v);
387 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700388
Michael Jurka7426c422010-11-11 15:23:47 -0800389 @Override
390 public boolean onTouch(View v, MotionEvent event) {
391 mLastTouchedItem = v;
392 return false;
393 }
394
395 /*
396 * Determines if we should change the touch state to start scrolling after the
397 * user moves their touch point too far.
398 */
399 protected void determineScrollingStart(MotionEvent ev) {
400 if (!mIsDragging) super.determineScrollingStart(ev);
401 }
402
403 /*
404 * Determines if we should change the touch state to start dragging after the
405 * user moves their touch point far enough.
406 */
407 protected void determineDraggingStart(MotionEvent ev) {
408 /*
409 * Locally do absolute value. mLastMotionX is set to the y value
410 * of the down event.
411 */
412 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
413 final float x = ev.getX(pointerIndex);
414 final float y = ev.getY(pointerIndex);
415 final int xDiff = (int) Math.abs(x - mLastMotionX);
416 final int yDiff = (int) Math.abs(y - mLastMotionY);
417
418 final int touchSlop = mTouchSlop;
419 boolean yMoved = yDiff > touchSlop;
420 boolean isUpwardMotion = (yDiff / (float) xDiff) > mDragSlopeThreshold;
421
Winson Chung649a4ca2010-11-18 10:38:13 -0800422 if (isUpwardMotion && yMoved && mLastTouchedItem != null) {
Michael Jurka7426c422010-11-11 15:23:47 -0800423 // Drag if the user moved far enough along the Y axis
424 beginDragging(mLastTouchedItem);
425
426 // Cancel any pending longpress
427 if (mAllowLongPress) {
428 mAllowLongPress = false;
429 // Try canceling the long press. It could also have been scheduled
430 // by a distant descendant, so use the mAllowLongPress flag to block
431 // everything
432 final View currentPage = getPageAt(mCurrentPage);
433 if (currentPage != null) {
434 currentPage.cancelLongPress();
435 }
436 }
437 }
438 }
439
440 @Override
441 public boolean onInterceptTouchEvent(MotionEvent ev) {
442 final int action = ev.getAction();
443 switch (action & MotionEvent.ACTION_MASK) {
444 case MotionEvent.ACTION_DOWN:
445 mIsDragging = false;
446 break;
447 case MotionEvent.ACTION_MOVE:
448 if (mTouchState != TOUCH_STATE_SCROLLING && !mIsDragging) {
449 determineDraggingStart(ev);
450 }
451 break;
452 }
453 return super.onInterceptTouchEvent(ev);
454 }
455
456 @Override
457 public boolean onTouchEvent(MotionEvent ev) {
458 final int action = ev.getAction();
459 switch (action & MotionEvent.ACTION_MASK) {
460 case MotionEvent.ACTION_DOWN:
461 mIsDragging = false;
462 break;
463 case MotionEvent.ACTION_MOVE:
464 if (mTouchState != TOUCH_STATE_SCROLLING && !mIsDragging) {
465 determineDraggingStart(ev);
466 }
467 break;
468 }
469 return super.onTouchEvent(ev);
470 }
471
472 private boolean beginDragging(View v) {
Winson Chungd0d43012010-09-26 17:26:45 -0700473 // End the current choice mode before we start dragging anything
474 if (isChoiceMode(CHOICE_MODE_SINGLE)) {
475 endChoiceMode();
476 }
Michael Jurka7426c422010-11-11 15:23:47 -0800477 mIsDragging = true;
Winson Chungd0d43012010-09-26 17:26:45 -0700478
479 PendingAddItemInfo createItemInfo;
Winson Chung80baf5a2010-08-09 16:03:15 -0700480 switch (mCustomizationType) {
481 case WidgetCustomization:
Winson Chunge3193b92010-09-10 11:44:42 -0700482 // Get the icon as the drag representation
Winson Chungd0d43012010-09-26 17:26:45 -0700483 final LinearLayout l = (LinearLayout) v;
484 final Drawable icon = ((ImageView) l.findViewById(R.id.widget_preview)).getDrawable();
Winson Chunge3193b92010-09-10 11:44:42 -0700485 Bitmap b = Bitmap.createBitmap(icon.getIntrinsicWidth(), icon.getIntrinsicHeight(),
486 Bitmap.Config.ARGB_8888);
487 Canvas c = new Canvas(b);
488 icon.draw(c);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700489 PendingAddWidgetInfo createWidgetInfo = (PendingAddWidgetInfo) v.getTag();
Michael Jurkaa63c4522010-08-19 13:52:27 -0700490
Michael Jurka3e7c7632010-10-02 16:01:03 -0700491 mLauncher.getWorkspace().onDragStartedWithItemMinSize(
492 createWidgetInfo.minWidth, createWidgetInfo.minHeight);
493 mDragController.startDrag(v, b, this, createWidgetInfo, DragController.DRAG_ACTION_COPY,
Winson Chungd0d43012010-09-26 17:26:45 -0700494 null);
Winson Chunge3193b92010-09-10 11:44:42 -0700495
496 // Cleanup the icon
497 b.recycle();
Winson Chung80baf5a2010-08-09 16:03:15 -0700498 return true;
Winson Chung80baf5a2010-08-09 16:03:15 -0700499 case ShortcutCustomization:
Winson Chungd0d43012010-09-26 17:26:45 -0700500 createItemInfo = (PendingAddItemInfo) v.getTag();
Michael Jurka0280c3b2010-09-17 15:00:07 -0700501 mDragController.startDrag(
502 v, this, createItemInfo, DragController.DRAG_ACTION_COPY, null);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700503 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1);
Winson Chung80baf5a2010-08-09 16:03:15 -0700504 return true;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700505 case ApplicationCustomization:
506 // Pick up the application for dropping
507 ApplicationInfo app = (ApplicationInfo) v.getTag();
508 app = new ApplicationInfo(app);
509
510 mDragController.startDrag(v, this, app, DragController.DRAG_ACTION_COPY);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700511 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700512 return true;
Winson Chung80baf5a2010-08-09 16:03:15 -0700513 }
514 return false;
515 }
516
Winson Chunge3193b92010-09-10 11:44:42 -0700517 /**
518 * Pre-processes the layout of the different widget pages.
519 * @return the number of pages of widgets that we have
520 */
Winson Chung80baf5a2010-08-09 16:03:15 -0700521 private int relayoutWidgets() {
Winson Chunge3193b92010-09-10 11:44:42 -0700522 if (mWidgetList.isEmpty()) return 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700523
Winson Chunge3193b92010-09-10 11:44:42 -0700524 // create a new page for the first set of widgets
525 ArrayList<AppWidgetProviderInfo> newPage = new ArrayList<AppWidgetProviderInfo>();
Winson Chung80baf5a2010-08-09 16:03:15 -0700526 mWidgetPages.clear();
Winson Chunge3193b92010-09-10 11:44:42 -0700527 mWidgetPages.add(newPage);
528
529 // do this until we have no more widgets to lay out
530 final int maxNumCellsPerRow = mMaxWidgetsCellHSpan;
531 final int widgetCount = mWidgetList.size();
532 int numCellsInRow = 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700533 for (int i = 0; i < widgetCount; ++i) {
Winson Chunge3193b92010-09-10 11:44:42 -0700534 final AppWidgetProviderInfo info = mWidgetList.get(i);
Winson Chung80baf5a2010-08-09 16:03:15 -0700535
Winson Chunge3193b92010-09-10 11:44:42 -0700536 // determine the size of the current widget
537 int cellSpanX = Math.max(sMinWidgetCellHSpan, Math.min(sMaxWidgetCellHSpan,
538 mWorkspaceWidgetLayout.estimateCellHSpan(info.minWidth)));
Winson Chung80baf5a2010-08-09 16:03:15 -0700539
Winson Chunge3193b92010-09-10 11:44:42 -0700540 // create a new page if necessary
541 if ((numCellsInRow + cellSpanX) > maxNumCellsPerRow) {
542 numCellsInRow = 0;
543 newPage = new ArrayList<AppWidgetProviderInfo>();
544 mWidgetPages.add(newPage);
Winson Chung80baf5a2010-08-09 16:03:15 -0700545 }
546
Winson Chunge3193b92010-09-10 11:44:42 -0700547 // add the item to the current page
548 newPage.add(info);
549 numCellsInRow += cellSpanX;
Winson Chung80baf5a2010-08-09 16:03:15 -0700550 }
Winson Chunge3193b92010-09-10 11:44:42 -0700551
Winson Chung80baf5a2010-08-09 16:03:15 -0700552 return mWidgetPages.size();
553 }
554
Winson Chunge3193b92010-09-10 11:44:42 -0700555 /**
Winson Chung7da10252010-10-28 16:07:04 -0700556 * Helper function to draw a drawable to the specified canvas with the specified bounds.
557 */
Winson Chung45e1d6e2010-11-09 17:19:49 -0800558 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h) {
Winson Chung7da10252010-10-28 16:07:04 -0700559 if (bitmap != null) mCanvas.setBitmap(bitmap);
560 mCanvas.save();
Winson Chung45e1d6e2010-11-09 17:19:49 -0800561 d.setBounds(x, y, x+w, y+h);
Winson Chung7da10252010-10-28 16:07:04 -0700562 d.draw(mCanvas);
563 mCanvas.restore();
564 }
565
566 /**
Winson Chung45e1d6e2010-11-09 17:19:49 -0800567 * This method will extract the preview image specified by the wallpaper source provider (if it
568 * exists) otherwise, it will try to generate a default image preview.
569 */
570 private Drawable getWallpaperPreview(ResolveInfo info) {
571 // To be implemented later: resolving the up-to-date wallpaper thumbnail
572
573 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
574 final int dim = mWorkspaceWidgetLayout.estimateCellWidth(mWallpaperCellHSpan);
575 Resources resources = mLauncher.getResources();
576
577 // Create a new bitmap to hold the widget preview
578 int width = (int) (dim * sScaleFactor);
579 int height = (int) (dim * sScaleFactor);
580 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
581 final Drawable background = resources.getDrawable(R.drawable.default_widget_preview);
582 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
583
584 // Draw the icon flush left
585 try {
586 final IconCache iconCache =
587 ((LauncherApplication) mLauncher.getApplication()).getIconCache();
588 Drawable icon = new FastBitmapDrawable(Utilities.createIconBitmap(
589 iconCache.getFullResIcon(info, mPackageManager), mContext));
590
591 final int iconSize = minDim / 2;
592 final int offset = iconSize / 4;
593 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
594 } catch (Resources.NotFoundException e) {
595 // if we can't find the icon, then just don't draw it
596 }
597
598 Drawable drawable = new FastBitmapDrawable(bitmap);
599 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
600 return drawable;
601 }
602
603 /**
Winson Chunge3193b92010-09-10 11:44:42 -0700604 * This method will extract the preview image specified by the widget developer (if it exists),
605 * otherwise, it will try to generate a default image preview with the widget's package icon.
Winson Chung45e1d6e2010-11-09 17:19:49 -0800606 * @return the drawable that will be used and sized in the ImageView to represent the widget
Winson Chunge3193b92010-09-10 11:44:42 -0700607 */
Winson Chung94ba5b12010-11-08 17:17:47 -0800608 private Drawable getWidgetPreview(AppWidgetProviderInfo info) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800609 final PackageManager packageManager = mPackageManager;
Winson Chung80baf5a2010-08-09 16:03:15 -0700610 String packageName = info.provider.getPackageName();
611 Drawable drawable = null;
612 if (info.previewImage != 0) {
613 drawable = packageManager.getDrawable(packageName, info.previewImage, null);
614 if (drawable == null) {
615 Log.w(TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
616 + " for provider: " + info.provider);
Winson Chung80baf5a2010-08-09 16:03:15 -0700617 }
618 }
619
620 // If we don't have a preview image, create a default one
Winson Chung7da10252010-10-28 16:07:04 -0700621 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
622 final int maxDim = mWorkspaceWidgetLayout.estimateCellWidth(3);
Winson Chung80baf5a2010-08-09 16:03:15 -0700623 if (drawable == null) {
624 Resources resources = mLauncher.getResources();
625
Winson Chung80baf5a2010-08-09 16:03:15 -0700626 // Create a new bitmap to hold the widget preview
Winson Chunge3193b92010-09-10 11:44:42 -0700627 int width = (int) (Math.max(minDim, Math.min(maxDim, info.minWidth)) * sScaleFactor);
628 int height = (int) (Math.max(minDim, Math.min(maxDim, info.minHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700629 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
630 final Drawable background = resources.getDrawable(R.drawable.default_widget_preview);
631 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
Winson Chung80baf5a2010-08-09 16:03:15 -0700632
Winson Chung45e1d6e2010-11-09 17:19:49 -0800633 // Draw the icon flush left
Winson Chung80baf5a2010-08-09 16:03:15 -0700634 try {
Winson Chung80baf5a2010-08-09 16:03:15 -0700635 Drawable icon = null;
Winson Chunge3193b92010-09-10 11:44:42 -0700636 if (info.icon > 0) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700637 icon = packageManager.getDrawable(packageName, info.icon, null);
Winson Chung5f941722010-09-28 16:36:43 -0700638 }
639 if (icon == null) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700640 icon = resources.getDrawable(R.drawable.ic_launcher_application);
641 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700642
Winson Chunge3193b92010-09-10 11:44:42 -0700643 final int iconSize = minDim / 2;
644 final int offset = iconSize / 4;
Winson Chung45e1d6e2010-11-09 17:19:49 -0800645 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
Winson Chung80baf5a2010-08-09 16:03:15 -0700646 } catch (Resources.NotFoundException e) {
647 // if we can't find the icon, then just don't draw it
648 }
649
Winson Chungb3347bb2010-08-19 14:51:28 -0700650 drawable = new FastBitmapDrawable(bitmap);
Winson Chung7da10252010-10-28 16:07:04 -0700651 } else {
652 // Scale down the preview if necessary
Winson Chung94ba5b12010-11-08 17:17:47 -0800653 final float imageWidth = drawable.getIntrinsicWidth();
654 final float imageHeight = drawable.getIntrinsicHeight();
655 final float aspect = (float) imageWidth / imageHeight;
656 final int scaledWidth =
657 (int) (Math.max(minDim, Math.min(maxDim, imageWidth)) * sScaleFactor);
658 final int scaledHeight =
659 (int) (Math.max(minDim, Math.min(maxDim, imageHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700660 int width;
661 int height;
Winson Chung94ba5b12010-11-08 17:17:47 -0800662 if (aspect >= 1.0f) {
Winson Chung7da10252010-10-28 16:07:04 -0700663 width = scaledWidth;
Winson Chung94ba5b12010-11-08 17:17:47 -0800664 height = (int) (((float) scaledWidth / imageWidth) * imageHeight);
Winson Chung7da10252010-10-28 16:07:04 -0700665 } else {
666 height = scaledHeight;
Winson Chung94ba5b12010-11-08 17:17:47 -0800667 width = (int) (((float) scaledHeight / imageHeight) * imageWidth);
Winson Chung7da10252010-10-28 16:07:04 -0700668 }
669
670 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
671 renderDrawableToBitmap(drawable, bitmap, 0, 0, width, height);
672
673 drawable = new FastBitmapDrawable(bitmap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700674 }
675 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
676 return drawable;
677 }
678
679 private void setupPage(PagedViewCellLayout layout) {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700680 layout.setCellCount(mCellCountX, mCellCountY);
681 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop, mPageLayoutPaddingRight,
682 mPageLayoutPaddingBottom);
Winson Chungef0066b2010-10-21 11:55:00 -0700683 layout.setGap(mPageLayoutWidthGap, mPageLayoutHeightGap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700684 }
685
Winson Chunge3193b92010-09-10 11:44:42 -0700686 private void setupWorkspaceLayout() {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700687 mWorkspaceWidgetLayout.setCellCount(mCellCountX, mCellCountY);
Winson Chunge3193b92010-09-10 11:44:42 -0700688 mWorkspaceWidgetLayout.setPadding(20, 10, 20, 0);
689
690 mMaxWidgetWidth = mWorkspaceWidgetLayout.estimateCellWidth(sMaxWidgetCellHSpan);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800691 mMaxWallpaperWidth = mWorkspaceWidgetLayout.estimateCellWidth(mWallpaperCellHSpan);
Winson Chunge3193b92010-09-10 11:44:42 -0700692 }
693
Winson Chung80baf5a2010-08-09 16:03:15 -0700694 private void syncWidgetPages() {
695 if (mWidgetList == null) return;
696
Winson Chunge3193b92010-09-10 11:44:42 -0700697 // we need to repopulate with the LinearLayout layout for the widget pages
698 removeAllViews();
Winson Chung80baf5a2010-08-09 16:03:15 -0700699 int numPages = relayoutWidgets();
Winson Chunge3193b92010-09-10 11:44:42 -0700700 for (int i = 0; i < numPages; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800701 LinearLayout layout = new PagedViewExtendedLayout(getContext());
Winson Chunge3193b92010-09-10 11:44:42 -0700702 layout.setGravity(Gravity.CENTER_HORIZONTAL);
Winson Chungef0066b2010-10-21 11:55:00 -0700703 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
704 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
Winson Chunge3193b92010-09-10 11:44:42 -0700705
Winson Chunge22a8e92010-11-12 13:40:58 -0800706 addView(layout, new LinearLayout.LayoutParams(
707 LinearLayout.LayoutParams.WRAP_CONTENT,
708 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung80baf5a2010-08-09 16:03:15 -0700709 }
710 }
711
712 private void syncWidgetPageItems(int page) {
713 // ensure that we have the right number of items on the pages
Winson Chunge3193b92010-09-10 11:44:42 -0700714 LinearLayout layout = (LinearLayout) getChildAt(page);
715 final ArrayList<AppWidgetProviderInfo> list = mWidgetPages.get(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700716 final int count = list.size();
717 layout.removeAllViews();
718 for (int i = 0; i < count; ++i) {
Winson Chung68846fd2010-10-29 11:00:27 -0700719 final AppWidgetProviderInfo info = (AppWidgetProviderInfo) list.get(i);
720 final PendingAddWidgetInfo createItemInfo = new PendingAddWidgetInfo(info, null, null);
Winson Chungd0d43012010-09-26 17:26:45 -0700721
Winson Chunge3193b92010-09-10 11:44:42 -0700722 LinearLayout l = (LinearLayout) mInflater.inflate(
723 R.layout.customize_paged_view_widget, layout, false);
Winson Chungd0d43012010-09-26 17:26:45 -0700724 l.setTag(createItemInfo);
725 l.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800726 l.setOnTouchListener(this);
Winson Chunge3193b92010-09-10 11:44:42 -0700727 l.setOnLongClickListener(this);
Winson Chung80baf5a2010-08-09 16:03:15 -0700728
Winson Chung94ba5b12010-11-08 17:17:47 -0800729 final Drawable icon = getWidgetPreview(info);
Michael Jurka9987a5c2010-10-08 16:58:12 -0700730
731 int[] spans = CellLayout.rectToCell(getResources(), info.minWidth, info.minHeight, null);
732 final int hSpan = spans[0];
733 final int vSpan = spans[1];
Winson Chunge3193b92010-09-10 11:44:42 -0700734
Winson Chungd0d43012010-09-26 17:26:45 -0700735 ImageView image = (ImageView) l.findViewById(R.id.widget_preview);
Winson Chunge3193b92010-09-10 11:44:42 -0700736 image.setMaxWidth(mMaxWidgetWidth);
737 image.setImageDrawable(icon);
Winson Chungd0d43012010-09-26 17:26:45 -0700738 TextView name = (TextView) l.findViewById(R.id.widget_name);
Winson Chunge3193b92010-09-10 11:44:42 -0700739 name.setText(info.label);
Winson Chungd0d43012010-09-26 17:26:45 -0700740 TextView dims = (TextView) l.findViewById(R.id.widget_dims);
Winson Chung3a476782010-09-15 15:21:55 -0700741 dims.setText(mContext.getString(R.string.widget_dims_format, hSpan, vSpan));
Winson Chunge3193b92010-09-10 11:44:42 -0700742
743 layout.addView(l);
Winson Chung80baf5a2010-08-09 16:03:15 -0700744 }
745 }
746
Winson Chung45e1d6e2010-11-09 17:19:49 -0800747 private void syncWallpaperPages() {
748 if (mWallpaperList == null) return;
749
750 // We need to repopulate the LinearLayout for the wallpaper pages
751 removeAllViews();
752 int numPages = (int) Math.ceil((float) (mWallpaperList.size() * mWallpaperCellHSpan) /
753 mMaxWidgetsCellHSpan);
754 for (int i = 0; i < numPages; ++i) {
755 LinearLayout layout = new PagedViewExtendedLayout(getContext());
756 layout.setGravity(Gravity.CENTER_HORIZONTAL);
757 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
758 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
759
Winson Chunge22a8e92010-11-12 13:40:58 -0800760 addView(layout, new LinearLayout.LayoutParams(
761 LinearLayout.LayoutParams.WRAP_CONTENT,
762 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800763 }
764 }
765
766 private void syncWallpaperPageItems(int page) {
767 // Load the items on to the pages
768 LinearLayout layout = (LinearLayout) getChildAt(page);
769 layout.removeAllViews();
770 final int count = mWallpaperList.size();
Winson Chungd28ed492010-11-22 14:34:57 -0800771 final int numItemsPerPage = mMaxWidgetsCellHSpan / mWallpaperCellHSpan;
772 final int startIndex = page * numItemsPerPage;
773 final int endIndex = Math.min(count, startIndex + numItemsPerPage);
774 for (int i = startIndex; i < endIndex; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800775 final ResolveInfo info = mWallpaperList.get(i);
776
777 LinearLayout l = (LinearLayout) mInflater.inflate(
778 R.layout.customize_paged_view_wallpaper, layout, false);
779 l.setTag(info);
780 l.setOnClickListener(this);
781
782 final Drawable icon = getWallpaperPreview(info);
783
784 ImageView image = (ImageView) l.findViewById(R.id.wallpaper_preview);
785 image.setMaxWidth(mMaxWidgetWidth);
786 image.setImageDrawable(icon);
787 TextView name = (TextView) l.findViewById(R.id.wallpaper_name);
788 name.setText(info.loadLabel(mPackageManager));
789
790 layout.addView(l);
791 }
792 }
793
Winson Chung80baf5a2010-08-09 16:03:15 -0700794 private void syncListPages(List<ResolveInfo> list) {
Winson Chunge3193b92010-09-10 11:44:42 -0700795 // we need to repopulate with PagedViewCellLayouts
796 removeAllViews();
797
Winson Chung80baf5a2010-08-09 16:03:15 -0700798 // ensure that we have the right number of pages
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700799 int numPages = (int) Math.ceil((float) list.size() / (mCellCountX * mCellCountY));
Winson Chunge3193b92010-09-10 11:44:42 -0700800 for (int i = 0; i < numPages; ++i) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700801 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
802 setupPage(layout);
803 addView(layout);
804 }
805 }
806
807 private void syncListPageItems(int page, List<ResolveInfo> list) {
808 // ensure that we have the right number of items on the pages
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700809 int numCells = mCellCountX * mCellCountY;
Winson Chung80baf5a2010-08-09 16:03:15 -0700810 int startIndex = page * numCells;
811 int endIndex = Math.min(startIndex + numCells, list.size());
812 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
813 // TODO: we can optimize by just re-applying to existing views
814 layout.removeAllViews();
815 for (int i = startIndex; i < endIndex; ++i) {
816 ResolveInfo info = list.get(i);
Winson Chungd0d43012010-09-26 17:26:45 -0700817 PendingAddItemInfo createItemInfo = new PendingAddItemInfo();
818
Winson Chung241c3b42010-08-25 16:53:03 -0700819 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
820 R.layout.customize_paged_view_item, layout, false);
Michael Jurkac9a96192010-11-01 11:52:08 -0700821 icon.applyFromResolveInfo(info, mPackageManager, mPageViewIconCache,
822 ((LauncherApplication)mLauncher.getApplication()).getIconCache());
Winson Chungd0d43012010-09-26 17:26:45 -0700823 switch (mCustomizationType) {
824 case WallpaperCustomization:
Winson Chunge8878e32010-09-15 20:37:09 -0700825 icon.setOnClickListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700826 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700827 case ShortcutCustomization:
828 createItemInfo.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
829 createItemInfo.componentName = new ComponentName(info.activityInfo.packageName,
830 info.activityInfo.name);
831 icon.setTag(createItemInfo);
832 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800833 icon.setOnTouchListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700834 icon.setOnLongClickListener(this);
835 break;
836 default:
837 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700838 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700839
840 final int index = i - startIndex;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700841 final int x = index % mCellCountX;
842 final int y = index / mCellCountX;
843 setupPage(layout);
844 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
845 }
846 }
847
848 private void syncAppPages() {
849 if (mApps == null) return;
850
851 // We need to repopulate with PagedViewCellLayouts
852 removeAllViews();
853
854 // Ensure that we have the right number of pages
855 int numPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
856 for (int i = 0; i < numPages; ++i) {
857 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
858 setupPage(layout);
859 addView(layout);
860 }
861 }
862
863 private void syncAppPageItems(int page) {
864 if (mApps == null) return;
865
866 // ensure that we have the right number of items on the pages
867 int numCells = mCellCountX * mCellCountY;
868 int startIndex = page * numCells;
869 int endIndex = Math.min(startIndex + numCells, mApps.size());
870 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
871 // TODO: we can optimize by just re-applying to existing views
872 layout.removeAllViews();
873 for (int i = startIndex; i < endIndex; ++i) {
874 final ApplicationInfo info = mApps.get(i);
875 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
876 R.layout.all_apps_paged_view_application, layout, false);
Winson Chung7da10252010-10-28 16:07:04 -0700877 icon.applyFromApplicationInfo(info, mPageViewIconCache, true);
Winson Chungd0d43012010-09-26 17:26:45 -0700878 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800879 icon.setOnTouchListener(this);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700880 icon.setOnLongClickListener(this);
881
882 final int index = i - startIndex;
883 final int x = index % mCellCountX;
884 final int y = index / mCellCountX;
Winson Chunge3193b92010-09-10 11:44:42 -0700885 setupPage(layout);
Winson Chung241c3b42010-08-25 16:53:03 -0700886 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
Winson Chung80baf5a2010-08-09 16:03:15 -0700887 }
888 }
889
Winson Chung80baf5a2010-08-09 16:03:15 -0700890 @Override
891 public void syncPages() {
Winson Chunge3193b92010-09-10 11:44:42 -0700892 boolean centerPagedViewCellLayouts = false;
Winson Chung80baf5a2010-08-09 16:03:15 -0700893 switch (mCustomizationType) {
894 case WidgetCustomization:
895 syncWidgetPages();
896 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700897 case ShortcutCustomization:
898 syncListPages(mShortcutList);
Winson Chunge3193b92010-09-10 11:44:42 -0700899 centerPagedViewCellLayouts = true;
Winson Chung80baf5a2010-08-09 16:03:15 -0700900 break;
901 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -0800902 syncWallpaperPages();
Winson Chung80baf5a2010-08-09 16:03:15 -0700903 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700904 case ApplicationCustomization:
905 syncAppPages();
906 centerPagedViewCellLayouts = false;
907 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700908 default:
909 removeAllViews();
Winson Chung86f77532010-08-24 11:08:22 -0700910 setCurrentPage(0);
Winson Chung80baf5a2010-08-09 16:03:15 -0700911 break;
912 }
913
914 // only try and center the page if there is one page
915 final int childCount = getChildCount();
Winson Chunge3193b92010-09-10 11:44:42 -0700916 if (centerPagedViewCellLayouts) {
917 if (childCount == 1) {
918 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(0);
919 layout.enableCenteredContent(true);
920 } else {
921 for (int i = 0; i < childCount; ++i) {
922 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(i);
923 layout.enableCenteredContent(false);
924 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700925 }
926 }
927
928 // bound the current page
Winson Chung86f77532010-08-24 11:08:22 -0700929 setCurrentPage(Math.max(0, Math.min(childCount - 1, getCurrentPage())));
Winson Chung80baf5a2010-08-09 16:03:15 -0700930 }
931
932 @Override
933 public void syncPageItems(int page) {
934 switch (mCustomizationType) {
935 case WidgetCustomization:
936 syncWidgetPageItems(page);
937 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700938 case ShortcutCustomization:
939 syncListPageItems(page, mShortcutList);
940 break;
941 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -0800942 syncWallpaperPageItems(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700943 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700944 case ApplicationCustomization:
945 syncAppPageItems(page);
946 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700947 }
948 }
Winson Chunge3193b92010-09-10 11:44:42 -0700949
Winson Chungd0d43012010-09-26 17:26:45 -0700950 @Override
Winson Chunge3193b92010-09-10 11:44:42 -0700951 protected int getAssociatedLowerPageBound(int page) {
952 return 0;
953 }
Winson Chungd0d43012010-09-26 17:26:45 -0700954 @Override
Winson Chunge3193b92010-09-10 11:44:42 -0700955 protected int getAssociatedUpperPageBound(int page) {
956 return getChildCount();
957 }
Winson Chungd0d43012010-09-26 17:26:45 -0700958
959 @Override
960 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Michael Jurka3125d9d2010-09-27 11:30:20 -0700961 mode.setTitle(mChoiceModeTitleText);
Winson Chungd0d43012010-09-26 17:26:45 -0700962 return true;
963 }
964
965 @Override
966 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
967 return true;
968 }
969
970 @Override
971 public void onDestroyActionMode(ActionMode mode) {
972 endChoiceMode();
973 }
974
975 @Override
976 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
977 return false;
978 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700979}