blob: 6a563f28b9bddc6cc61819d9d72913be8e9b3ac3 [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
Michael Jurka72b079e2010-12-10 01:03:53 -080019import com.android.launcher.R;
Winson Chung80baf5a2010-08-09 16:03:15 -070020
Adam Cohen7b9d3a62010-12-07 21:49:34 -080021import org.xmlpull.v1.XmlPullParser;
22
Adam Cohen120980b2010-12-08 11:05:37 -080023import android.animation.Animator;
Patrick Dubroy047379a2010-12-19 22:02:04 -080024import android.animation.AnimatorListenerAdapter;
Adam Cohen120980b2010-12-08 11:05:37 -080025import android.animation.ObjectAnimator;
26import android.animation.PropertyValuesHolder;
27import android.animation.TimeInterpolator;
Adam Cohen7b9d3a62010-12-07 21:49:34 -080028import android.app.WallpaperManager;
Winson Chung80baf5a2010-08-09 16:03:15 -070029import android.appwidget.AppWidgetManager;
30import android.appwidget.AppWidgetProviderInfo;
31import android.content.ComponentName;
32import android.content.Context;
33import android.content.Intent;
Adam Cohen7b9d3a62010-12-07 21:49:34 -080034import android.content.pm.ActivityInfo;
Winson Chung80baf5a2010-08-09 16:03:15 -070035import android.content.pm.PackageManager;
36import android.content.pm.ResolveInfo;
37import android.content.res.Resources;
Winson Chunge3193b92010-09-10 11:44:42 -070038import android.content.res.TypedArray;
Adam Cohen7b9d3a62010-12-07 21:49:34 -080039import android.content.res.XmlResourceParser;
Winson Chung80baf5a2010-08-09 16:03:15 -070040import android.graphics.Bitmap;
Michael Jurkaaf91de02010-11-23 16:23:58 -080041import android.graphics.Bitmap.Config;
Winson Chungcd4bc492010-12-09 18:52:32 -080042import android.graphics.Canvas;
Winson Chung80baf5a2010-08-09 16:03:15 -070043import android.graphics.drawable.Drawable;
Winson Chung80baf5a2010-08-09 16:03:15 -070044import android.util.AttributeSet;
45import android.util.Log;
Adam Cohen7b9d3a62010-12-07 21:49:34 -080046import android.util.Slog;
47import android.util.TypedValue;
48import android.util.Xml;
Winson Chungd0d43012010-09-26 17:26:45 -070049import android.view.ActionMode;
Winson Chunge3193b92010-09-10 11:44:42 -070050import android.view.Gravity;
Winson Chung80baf5a2010-08-09 16:03:15 -070051import android.view.LayoutInflater;
Winson Chungd0d43012010-09-26 17:26:45 -070052import android.view.Menu;
53import android.view.MenuItem;
Winson Chung80baf5a2010-08-09 16:03:15 -070054import android.view.View;
Adam Cohen120980b2010-12-08 11:05:37 -080055import android.view.animation.DecelerateInterpolator;
56import android.view.animation.Interpolator;
Winson Chung59e1f9a2010-12-21 11:31:54 -080057import android.widget.Checkable;
Winson Chunge3193b92010-09-10 11:44:42 -070058import android.widget.ImageView;
59import android.widget.LinearLayout;
Michael Jurkad3ef3062010-11-23 16:23:58 -080060import android.widget.TextView;
Winson Chung80baf5a2010-08-09 16:03:15 -070061
Michael Jurka72b079e2010-12-10 01:03:53 -080062import java.util.ArrayList;
63import java.util.Collections;
64import java.util.Comparator;
65import java.util.List;
Winson Chung80baf5a2010-08-09 16:03:15 -070066
Adam Cohen7b9d3a62010-12-07 21:49:34 -080067
Michael Jurka72b079e2010-12-10 01:03:53 -080068public class CustomizePagedView extends PagedViewWithDraggableItems
69 implements View.OnClickListener, DragSource, ActionMode.Callback {
Winson Chung80baf5a2010-08-09 16:03:15 -070070
71 public enum CustomizationType {
72 WidgetCustomization,
Winson Chung80baf5a2010-08-09 16:03:15 -070073 ShortcutCustomization,
Winson Chung5ffd8ea2010-09-23 18:40:29 -070074 WallpaperCustomization,
75 ApplicationCustomization
Winson Chung80baf5a2010-08-09 16:03:15 -070076 }
77
78 private static final String TAG = "CustomizeWorkspace";
Winson Chung80baf5a2010-08-09 16:03:15 -070079
80 private Launcher mLauncher;
81 private DragController mDragController;
82 private PackageManager mPackageManager;
83
84 private CustomizationType mCustomizationType;
85
Winson Chunge3193b92010-09-10 11:44:42 -070086 // The layout used to emulate the workspace in resolve the cell dimensions of a widget
87 private PagedViewCellLayout mWorkspaceWidgetLayout;
88
89 // The mapping between the pages and the widgets that will be laid out on them
90 private ArrayList<ArrayList<AppWidgetProviderInfo>> mWidgetPages;
91
Winson Chung45e1d6e2010-11-09 17:19:49 -080092 // The max dimensions for the ImageView we use for displaying a widget
Winson Chunge3193b92010-09-10 11:44:42 -070093 private int mMaxWidgetWidth;
94
Winson Chung45e1d6e2010-11-09 17:19:49 -080095 // The max number of widget cells to take a "page" of widgets
Winson Chunge3193b92010-09-10 11:44:42 -070096 private int mMaxWidgetsCellHSpan;
97
Winson Chung45e1d6e2010-11-09 17:19:49 -080098 // The size of the items on the wallpaper tab
99 private int mWallpaperCellHSpan;
100
Winson Chung78bd53c2010-12-09 13:50:24 -0800101 // The max number of wallpaper cells to take a "page" of wallpaper items
102 private int mMaxWallpaperCellHSpan;
103
Winson Chunge3193b92010-09-10 11:44:42 -0700104 // The raw sources of data for each of the different tabs of the customization page
Winson Chung80baf5a2010-08-09 16:03:15 -0700105 private List<AppWidgetProviderInfo> mWidgetList;
Winson Chung80baf5a2010-08-09 16:03:15 -0700106 private List<ResolveInfo> mShortcutList;
Winson Chunge8878e32010-09-15 20:37:09 -0700107 private List<ResolveInfo> mWallpaperList;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700108 private List<ApplicationInfo> mApps;
Winson Chung80baf5a2010-08-09 16:03:15 -0700109
Winson Chunge3193b92010-09-10 11:44:42 -0700110 private static final int sMinWidgetCellHSpan = 2;
111 private static final int sMaxWidgetCellHSpan = 4;
112
Michael Jurka3125d9d2010-09-27 11:30:20 -0700113 private int mChoiceModeTitleText;
114
Winson Chunge3193b92010-09-10 11:44:42 -0700115 // The scale factor for widget previews inside the widget drawer
116 private static final float sScaleFactor = 0.75f;
Winson Chung80baf5a2010-08-09 16:03:15 -0700117
118 private final Canvas mCanvas = new Canvas();
119 private final LayoutInflater mInflater;
120
Adam Cohen120980b2010-12-08 11:05:37 -0800121 private final float mTmpFloatPos[] = new float[2];
122 private final float ANIMATION_SCALE = 0.5f;
123 private final int ANIMATION_DURATION = 400;
124 private TimeInterpolator mQuintEaseOutInterpolator = new DecelerateInterpolator(2.5f);
125 private ScaleAlphaInterpolator mScaleAlphaInterpolator = new ScaleAlphaInterpolator();
126
Winson Chung80baf5a2010-08-09 16:03:15 -0700127 public CustomizePagedView(Context context) {
Winson Chunge3193b92010-09-10 11:44:42 -0700128 this(context, null, 0);
Winson Chung80baf5a2010-08-09 16:03:15 -0700129 }
130
131 public CustomizePagedView(Context context, AttributeSet attrs) {
Winson Chunge3193b92010-09-10 11:44:42 -0700132 this(context, attrs, 0);
133 }
134
135 public CustomizePagedView(Context context, AttributeSet attrs, int defStyle) {
136 super(context, attrs, defStyle);
137
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700138 TypedArray a;
Winson Chung45e1d6e2010-11-09 17:19:49 -0800139 a = context.obtainStyledAttributes(attrs, R.styleable.CustomizePagedView, defStyle, 0);
140 mWallpaperCellHSpan = a.getInt(R.styleable.CustomizePagedView_wallpaperCellSpanX, 4);
Winson Chung78bd53c2010-12-09 13:50:24 -0800141 mMaxWallpaperCellHSpan = a.getInt(R.styleable.CustomizePagedView_wallpaperCellCountX, 8);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700142 mMaxWidgetsCellHSpan = a.getInt(R.styleable.CustomizePagedView_widgetCellCountX, 8);
143 a.recycle();
144 a = context.obtainStyledAttributes(attrs, R.styleable.PagedView, defStyle, 0);
145 mCellCountX = a.getInt(R.styleable.PagedView_cellCountX, 7);
146 mCellCountY = a.getInt(R.styleable.PagedView_cellCountY, 4);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700147 a.recycle();
Winson Chung45e1d6e2010-11-09 17:19:49 -0800148
Winson Chung80baf5a2010-08-09 16:03:15 -0700149 mCustomizationType = CustomizationType.WidgetCustomization;
Winson Chunge3193b92010-09-10 11:44:42 -0700150 mWidgetPages = new ArrayList<ArrayList<AppWidgetProviderInfo>>();
151 mWorkspaceWidgetLayout = new PagedViewCellLayout(context);
Winson Chung80baf5a2010-08-09 16:03:15 -0700152 mInflater = LayoutInflater.from(context);
Winson Chunge3193b92010-09-10 11:44:42 -0700153
Michael Jurka7426c422010-11-11 15:23:47 -0800154 final Resources r = context.getResources();
Michael Jurka72b079e2010-12-10 01:03:53 -0800155 setDragSlopeThreshold(
156 r.getInteger(R.integer.config_customizationDrawerDragSlopeThreshold) / 100.0f);
Michael Jurka7426c422010-11-11 15:23:47 -0800157
Winson Chung80baf5a2010-08-09 16:03:15 -0700158 setVisibility(View.GONE);
159 setSoundEffectsEnabled(false);
Winson Chunge3193b92010-09-10 11:44:42 -0700160 setupWorkspaceLayout();
Winson Chung80baf5a2010-08-09 16:03:15 -0700161 }
162
Winson Chung7da10252010-10-28 16:07:04 -0700163 @Override
164 protected void init() {
165 super.init();
166 mCenterPagesVertically = false;
167 }
168
Winson Chung80baf5a2010-08-09 16:03:15 -0700169 public void setLauncher(Launcher launcher) {
170 Context context = getContext();
171 mLauncher = launcher;
172 mPackageManager = context.getPackageManager();
173 }
174
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700175 /**
176 * Sets the list of applications that launcher has loaded.
177 */
178 public void setApps(ArrayList<ApplicationInfo> list) {
179 mApps = list;
180 Collections.sort(mApps, LauncherModel.APP_NAME_COMPARATOR);
Winson Chung5f941722010-09-28 16:36:43 -0700181
182 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung04998342011-01-05 13:54:43 -0800183 mPageViewIconCache.retainAllApps(list);
184 invalidatePageData();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700185 }
186
187 /**
188 * Convenience function to add new items to the set of applications that were previously loaded.
189 * Called by both updateApps() and setApps().
190 */
191 private void addAppsWithoutInvalidate(ArrayList<ApplicationInfo> list) {
192 // we add it in place, in alphabetical order
193 final int count = list.size();
194 for (int i = 0; i < count; ++i) {
195 final ApplicationInfo info = list.get(i);
196 final int index = Collections.binarySearch(mApps, info, LauncherModel.APP_NAME_COMPARATOR);
197 if (index < 0) {
198 mApps.add(-(index + 1), info);
199 }
200 }
201 }
202
203 /**
204 * Adds new applications to the loaded list, and notifies the paged view to update itself.
205 */
206 public void addApps(ArrayList<ApplicationInfo> list) {
207 addAppsWithoutInvalidate(list);
Winson Chung5f941722010-09-28 16:36:43 -0700208
209 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung04998342011-01-05 13:54:43 -0800210 invalidatePageData();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700211 }
212
213 /**
214 * Convenience function to remove items to the set of applications that were previously loaded.
215 * Called by both updateApps() and removeApps().
216 */
217 private void removeAppsWithoutInvalidate(ArrayList<ApplicationInfo> list) {
218 // loop through all the apps and remove apps that have the same component
219 final int length = list.size();
220 for (int i = 0; i < length; ++i) {
221 final ApplicationInfo info = list.get(i);
222 int removeIndex = findAppByComponent(mApps, info);
223 if (removeIndex > -1) {
224 mApps.remove(removeIndex);
Winson Chung04998342011-01-05 13:54:43 -0800225 mPageViewIconCache.removeOutline(new PagedViewIconCache.Key(info));
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700226 }
227 }
228 }
229
230 /**
231 * Removes applications from the loaded list, and notifies the paged view to update itself.
232 */
233 public void removeApps(ArrayList<ApplicationInfo> list) {
234 removeAppsWithoutInvalidate(list);
Winson Chung5f941722010-09-28 16:36:43 -0700235
236 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung04998342011-01-05 13:54:43 -0800237 invalidatePageData();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700238 }
239
240 /**
241 * Updates a set of applications from the loaded list, and notifies the paged view to update
242 * itself.
243 */
244 public void updateApps(ArrayList<ApplicationInfo> list) {
245 // We remove and re-add the updated applications list because it's properties may have
246 // changed (ie. the title), and this will ensure that the items will be in their proper
247 // place in the list.
248 removeAppsWithoutInvalidate(list);
249 addAppsWithoutInvalidate(list);
Winson Chung5f941722010-09-28 16:36:43 -0700250
251 // Update the widgets/shortcuts to reflect changes in the set of available apps
Winson Chung04998342011-01-05 13:54:43 -0800252 invalidatePageData();
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700253 }
254
255 /**
256 * Convenience function to find matching ApplicationInfos for removal.
257 */
258 private int findAppByComponent(List<ApplicationInfo> list, ApplicationInfo item) {
259 ComponentName removeComponent = item.intent.getComponent();
260 final int length = list.size();
261 for (int i = 0; i < length; ++i) {
262 ApplicationInfo info = list.get(i);
263 if (info.intent.getComponent().equals(removeComponent)) {
264 return i;
265 }
266 }
267 return -1;
268 }
269
Winson Chung80baf5a2010-08-09 16:03:15 -0700270 public void update() {
Winson Chung80baf5a2010-08-09 16:03:15 -0700271 // get the list of widgets
272 mWidgetList = AppWidgetManager.getInstance(mLauncher).getInstalledProviders();
273 Collections.sort(mWidgetList, new Comparator<AppWidgetProviderInfo>() {
274 @Override
275 public int compare(AppWidgetProviderInfo object1, AppWidgetProviderInfo object2) {
276 return object1.label.compareTo(object2.label);
277 }
278 });
279
280 Comparator<ResolveInfo> resolveInfoComparator = new Comparator<ResolveInfo>() {
281 @Override
282 public int compare(ResolveInfo object1, ResolveInfo object2) {
283 return object1.loadLabel(mPackageManager).toString().compareTo(
284 object2.loadLabel(mPackageManager).toString());
285 }
286 };
287
Winson Chung80baf5a2010-08-09 16:03:15 -0700288 // get the list of shortcuts
289 Intent shortcutsIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
290 mShortcutList = mPackageManager.queryIntentActivities(shortcutsIntent, 0);
291 Collections.sort(mShortcutList, resolveInfoComparator);
292
Winson Chunge8878e32010-09-15 20:37:09 -0700293 // get the list of wallpapers
294 Intent wallpapersIntent = new Intent(Intent.ACTION_SET_WALLPAPER);
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800295 mWallpaperList = mPackageManager.queryIntentActivities(wallpapersIntent,
296 PackageManager.GET_META_DATA);
Winson Chunge8878e32010-09-15 20:37:09 -0700297 Collections.sort(mWallpaperList, resolveInfoComparator);
298
Winson Chung04998342011-01-05 13:54:43 -0800299 ArrayList<ResolveInfo> retainShortcutList = new ArrayList<ResolveInfo>(mShortcutList);
300 retainShortcutList.addAll(mWallpaperList);
301 mPageViewIconCache.retainAllShortcuts(retainShortcutList);
302 mPageViewIconCache.retainAllAppWidgets(mWidgetList);
Winson Chung80baf5a2010-08-09 16:03:15 -0700303 invalidatePageData();
304 }
305
306 public void setDragController(DragController dragger) {
307 mDragController = dragger;
308 }
309
310 public void setCustomizationFilter(CustomizationType filterType) {
311 mCustomizationType = filterType;
Winson Chung7d1fcbc2011-01-04 10:22:20 -0800312 cancelDragging();
Winson Chunga12a2502010-12-20 14:41:35 -0800313 if (getChildCount() > 0) {
314 setCurrentPage(0);
315 updateCurrentPageScroll();
316 invalidatePageData();
Winson Chungd0d43012010-09-26 17:26:45 -0700317
Winson Chunga12a2502010-12-20 14:41:35 -0800318 // End the current choice mode so that we don't carry selections across tabs
319 endChoiceMode();
320 }
321 }
322
323 public CustomizationType getCustomizationFilter() {
324 return mCustomizationType;
Winson Chung80baf5a2010-08-09 16:03:15 -0700325 }
326
327 @Override
328 public void onDropCompleted(View target, boolean success) {
Winson Chung59e1f9a2010-12-21 11:31:54 -0800329 resetCheckedGrandchildren();
Michael Jurka3e7c7632010-10-02 16:01:03 -0700330 mLauncher.getWorkspace().onDragStopped();
Winson Chung80baf5a2010-08-09 16:03:15 -0700331 }
332
333 @Override
Patrick Dubroya669d792010-11-23 14:40:33 -0800334 public void onDragViewVisible() {
335 }
336
Adam Cohen120980b2010-12-08 11:05:37 -0800337 class ScaleAlphaInterpolator implements Interpolator {
338 public float getInterpolation(float input) {
339 float pivot = 0.5f;
340 if (input < pivot) {
341 return 0;
342 } else {
343 return (input - pivot)/(1 - pivot);
344 }
345 }
346 }
347
348 private void animateItemOntoScreen(View dragView,
349 final CellLayout layout, final ItemInfo info) {
350 mTmpFloatPos[0] = layout.getWidth() / 2;
351 mTmpFloatPos[1] = layout.getHeight() / 2;
352 mLauncher.getWorkspace().mapPointFromChildToSelf(layout, mTmpFloatPos);
353
354 final DragLayer dragLayer = (DragLayer) mLauncher.findViewById(R.id.drag_layer);
355 final View dragCopy = dragLayer.createDragView(dragView);
356 dragCopy.setAlpha(1.0f);
357
358 int dragViewWidth = dragView.getMeasuredWidth();
359 int dragViewHeight = dragView.getMeasuredHeight();
360 float heightOffset = 0;
361 float widthOffset = 0;
362
363 if (dragView instanceof ImageView) {
364 Drawable d = ((ImageView) dragView).getDrawable();
365 int width = d.getIntrinsicWidth();
366 int height = d.getIntrinsicHeight();
367
368 if ((1.0 * width / height) >= (1.0f * dragViewWidth) / dragViewHeight) {
369 float f = (dragViewWidth / (width * 1.0f));
370 heightOffset = ANIMATION_SCALE * (dragViewHeight - f * height) / 2;
371 } else {
372 float f = (dragViewHeight / (height * 1.0f));
373 widthOffset = ANIMATION_SCALE * (dragViewWidth - f * width) / 2;
374 }
375 }
376
377 float toX = mTmpFloatPos[0] - dragView.getMeasuredWidth() / 2 + widthOffset;
378 float toY = mTmpFloatPos[1] - dragView.getMeasuredHeight() / 2 + heightOffset;
379
380 ObjectAnimator posAnim = ObjectAnimator.ofPropertyValuesHolder(dragCopy,
381 PropertyValuesHolder.ofFloat("x", toX),
382 PropertyValuesHolder.ofFloat("y", toY));
383 posAnim.setInterpolator(mQuintEaseOutInterpolator);
384 posAnim.setDuration(ANIMATION_DURATION);
385
Patrick Dubroy047379a2010-12-19 22:02:04 -0800386 posAnim.addListener(new AnimatorListenerAdapter() {
Adam Cohen120980b2010-12-08 11:05:37 -0800387 public void onAnimationEnd(Animator animation) {
388 dragLayer.removeView(dragCopy);
389 mLauncher.addExternalItemToScreen(info, layout);
390 post(new Runnable() {
391 public void run() {
392 layout.animateDrop();
393 }
394 });
395 }
396 });
397
398 ObjectAnimator scaleAlphaAnim = ObjectAnimator.ofPropertyValuesHolder(dragCopy,
399 PropertyValuesHolder.ofFloat("alpha", 1.0f, 0.0f),
400 PropertyValuesHolder.ofFloat("scaleX", ANIMATION_SCALE),
401 PropertyValuesHolder.ofFloat("scaleY", ANIMATION_SCALE));
402 scaleAlphaAnim.setInterpolator(mScaleAlphaInterpolator);
403 scaleAlphaAnim.setDuration(ANIMATION_DURATION);
404
405 posAnim.start();
406 scaleAlphaAnim.start();
407 }
408
Patrick Dubroya669d792010-11-23 14:40:33 -0800409 @Override
Adam Cohen120980b2010-12-08 11:05:37 -0800410 public void onClick(final View v) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800411 // Return early if this is not initiated from a touch
412 if (!v.isInTouchMode()) return;
413 // Return early if we are still animating the pages
Winson Chung4f9e1072010-11-15 15:28:24 -0800414 if (mNextPage != INVALID_PAGE) return;
Winson Chunge8878e32010-09-15 20:37:09 -0700415
Winson Chungd0d43012010-09-26 17:26:45 -0700416 // On certain pages, we allow single tap to mark items as selected so that they can be
417 // dropped onto the mini workspaces
Michael Jurka3125d9d2010-09-27 11:30:20 -0700418 boolean enterChoiceMode = false;
Winson Chungd0d43012010-09-26 17:26:45 -0700419 switch (mCustomizationType) {
420 case WidgetCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700421 mChoiceModeTitleText = R.string.cab_widget_selection_text;
422 enterChoiceMode = true;
423 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700424 case ApplicationCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700425 mChoiceModeTitleText = R.string.cab_app_selection_text;
426 enterChoiceMode = true;
427 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700428 case ShortcutCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700429 mChoiceModeTitleText = R.string.cab_shortcut_selection_text;
430 enterChoiceMode = true;
431 break;
432 default:
433 break;
434 }
Winson Chungd0d43012010-09-26 17:26:45 -0700435
Michael Jurka3125d9d2010-09-27 11:30:20 -0700436 if (enterChoiceMode) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700437 final ItemInfo itemInfo = (ItemInfo) v.getTag();
Winson Chungd0d43012010-09-26 17:26:45 -0700438
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700439 Workspace w = mLauncher.getWorkspace();
440 int currentWorkspaceScreen = mLauncher.getCurrentWorkspaceScreen();
441 final CellLayout cl = (CellLayout)w.getChildAt(currentWorkspaceScreen);
Adam Cohen120980b2010-12-08 11:05:37 -0800442 final View dragView = getDragView(v);
Michael Jurkae17e19c2010-09-28 11:01:39 -0700443
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700444 animateClickFeedback(v, new Runnable() {
445 @Override
446 public void run() {
Patrick Dubroy047379a2010-12-19 22:02:04 -0800447 cl.calculateSpans(itemInfo);
448 if (cl.findCellForSpan(null, itemInfo.spanX, itemInfo.spanY)) {
449 animateItemOntoScreen(dragView, cl, itemInfo);
450 } else {
451 mLauncher.showOutOfSpaceMessage();
452 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700453 }
454 });
Winson Chungd0d43012010-09-26 17:26:45 -0700455 return;
Winson Chungd0d43012010-09-26 17:26:45 -0700456 }
457
458 // Otherwise, we just handle the single click here
Winson Chunge8878e32010-09-15 20:37:09 -0700459 switch (mCustomizationType) {
460 case WallpaperCustomization:
461 // animate some feedback to the long press
Winson Chungd0d43012010-09-26 17:26:45 -0700462 final View clickView = v;
Winson Chunge8878e32010-09-15 20:37:09 -0700463 animateClickFeedback(v, new Runnable() {
464 @Override
465 public void run() {
466 // add the shortcut
Winson Chungd0d43012010-09-26 17:26:45 -0700467 ResolveInfo info = (ResolveInfo) clickView.getTag();
Winson Chung24ab2f12010-09-16 14:10:47 -0700468 Intent createWallpapersIntent = new Intent(Intent.ACTION_SET_WALLPAPER);
469 ComponentName name = new ComponentName(info.activityInfo.packageName,
470 info.activityInfo.name);
471 createWallpapersIntent.setComponent(name);
472 mLauncher.processWallpaper(createWallpapersIntent);
Winson Chunge8878e32010-09-15 20:37:09 -0700473 }
474 });
Winson Chungd0d43012010-09-26 17:26:45 -0700475 break;
476 default:
477 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700478 }
479 }
480
Winson Chungcd4bc492010-12-09 18:52:32 -0800481 Bitmap drawableToBitmap(Drawable d, View v) {
482 Bitmap b = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.ARGB_8888);
Michael Jurkaaf91de02010-11-23 16:23:58 -0800483 Canvas c = new Canvas(b);
Winson Chungcd4bc492010-12-09 18:52:32 -0800484 c.translate((v.getWidth() - d.getIntrinsicWidth()) / 2, v.getPaddingTop());
Michael Jurkaaf91de02010-11-23 16:23:58 -0800485 d.draw(c);
486 return b;
487 }
488
Adam Cohen120980b2010-12-08 11:05:37 -0800489 private View getDragView(View v) {
490 return (mCustomizationType == CustomizationType.WidgetCustomization) ?
491 v.findViewById(R.id.widget_preview) : v;
492 }
493
Michael Jurka72b079e2010-12-10 01:03:53 -0800494 protected boolean beginDragging(View v) {
Winson Chung304dcde2011-01-07 11:17:23 -0800495 if (!v.isInTouchMode()) return false;
496 if (!super.beginDragging(v)) return false;
497
Winson Chungd0d43012010-09-26 17:26:45 -0700498 // End the current choice mode before we start dragging anything
499 if (isChoiceMode(CHOICE_MODE_SINGLE)) {
500 endChoiceMode();
501 }
Winson Chung59e1f9a2010-12-21 11:31:54 -0800502 boolean result = false;
Winson Chung80baf5a2010-08-09 16:03:15 -0700503 switch (mCustomizationType) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800504 case WidgetCustomization: {
Adam Cohen120980b2010-12-08 11:05:37 -0800505 // Get the widget preview as the drag representation
Michael Jurkad3ef3062010-11-23 16:23:58 -0800506 final LinearLayout l = (LinearLayout) v;
Winson Chungcd4bc492010-12-09 18:52:32 -0800507 final ImageView i = (ImageView) l.findViewById(R.id.widget_preview);
508 final Drawable icon = i.getDrawable();
509 Bitmap b = drawableToBitmap(icon, i);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700510 PendingAddWidgetInfo createWidgetInfo = (PendingAddWidgetInfo) v.getTag();
Michael Jurkaa63c4522010-08-19 13:52:27 -0700511
Michael Jurkad3ef3062010-11-23 16:23:58 -0800512 int[] spanXY = CellLayout.rectToCell(
513 getResources(), createWidgetInfo.minWidth, createWidgetInfo.minHeight, null);
514 createWidgetInfo.spanX = spanXY[0];
515 createWidgetInfo.spanY = spanXY[1];
516 mLauncher.getWorkspace().onDragStartedWithItemSpans(spanXY[0], spanXY[1], b);
517 mDragController.startDrag(
Winson Chungcd4bc492010-12-09 18:52:32 -0800518 i, b, this, createWidgetInfo, DragController.DRAG_ACTION_COPY, null);
519 b.recycle();
Winson Chung59e1f9a2010-12-21 11:31:54 -0800520 result = true;
521 break;
Michael Jurkad3ef3062010-11-23 16:23:58 -0800522 }
523 case ShortcutCustomization: {
524 // get icon (top compound drawable, index is 1)
Winson Chungcd4bc492010-12-09 18:52:32 -0800525 final TextView tv = (TextView) v;
526 final Drawable icon = tv.getCompoundDrawables()[1];
527 Bitmap b = drawableToBitmap(icon, tv);
Adam Cohen120980b2010-12-08 11:05:37 -0800528 PendingAddItemInfo createItemInfo = (PendingAddItemInfo) v.getTag();
Winson Chungcd4bc492010-12-09 18:52:32 -0800529
Michael Jurkad3ef3062010-11-23 16:23:58 -0800530 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1, b);
Winson Chungcd4bc492010-12-09 18:52:32 -0800531 mDragController.startDrag(v, b, this, createItemInfo, DragController.DRAG_ACTION_COPY,
532 null);
533 b.recycle();
Winson Chung59e1f9a2010-12-21 11:31:54 -0800534 result = true;
535 break;
Michael Jurkad3ef3062010-11-23 16:23:58 -0800536 }
537 case ApplicationCustomization: {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700538 // Pick up the application for dropping
Michael Jurkad3ef3062010-11-23 16:23:58 -0800539 // get icon (top compound drawable, index is 1)
Winson Chungcd4bc492010-12-09 18:52:32 -0800540 final TextView tv = (TextView) v;
541 final Drawable icon = tv.getCompoundDrawables()[1];
542 Bitmap b = drawableToBitmap(icon, tv);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700543 ApplicationInfo app = (ApplicationInfo) v.getTag();
544 app = new ApplicationInfo(app);
545
Michael Jurkad3ef3062010-11-23 16:23:58 -0800546 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1, b);
Winson Chungcd4bc492010-12-09 18:52:32 -0800547 mDragController.startDrag(v, b, this, app, DragController.DRAG_ACTION_COPY, null);
548 b.recycle();
Winson Chung59e1f9a2010-12-21 11:31:54 -0800549 result = true;
550 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700551 }
Michael Jurkad3ef3062010-11-23 16:23:58 -0800552 }
Winson Chung59e1f9a2010-12-21 11:31:54 -0800553
554 // We toggle the checked state _after_ we create the view for the drag in case toggling the
555 // checked state changes the view's look
556 if (v instanceof Checkable) {
557 // In preparation for drag, we always reset the checked grand children regardless of
558 // what choice mode we are in
559 resetCheckedGrandchildren();
560
561 // Toggle the selection on the dragged app
562 Checkable checkable = (Checkable) v;
563
564 // Note: we toggle the checkable state to actually cause an alpha fade for the duration
565 // of the drag of the item. (The fade-in will occur when all checked states are
566 // disabled when dragging ends)
567 checkable.toggle();
568 }
569
570 return result;
Winson Chung80baf5a2010-08-09 16:03:15 -0700571 }
572
Winson Chunge3193b92010-09-10 11:44:42 -0700573 /**
574 * Pre-processes the layout of the different widget pages.
575 * @return the number of pages of widgets that we have
576 */
Winson Chung80baf5a2010-08-09 16:03:15 -0700577 private int relayoutWidgets() {
Winson Chunge3193b92010-09-10 11:44:42 -0700578 if (mWidgetList.isEmpty()) return 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700579
Winson Chunge3193b92010-09-10 11:44:42 -0700580 // create a new page for the first set of widgets
581 ArrayList<AppWidgetProviderInfo> newPage = new ArrayList<AppWidgetProviderInfo>();
Winson Chung80baf5a2010-08-09 16:03:15 -0700582 mWidgetPages.clear();
Winson Chunge3193b92010-09-10 11:44:42 -0700583 mWidgetPages.add(newPage);
584
585 // do this until we have no more widgets to lay out
586 final int maxNumCellsPerRow = mMaxWidgetsCellHSpan;
587 final int widgetCount = mWidgetList.size();
588 int numCellsInRow = 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700589 for (int i = 0; i < widgetCount; ++i) {
Winson Chunge3193b92010-09-10 11:44:42 -0700590 final AppWidgetProviderInfo info = mWidgetList.get(i);
Winson Chung80baf5a2010-08-09 16:03:15 -0700591
Winson Chunge3193b92010-09-10 11:44:42 -0700592 // determine the size of the current widget
593 int cellSpanX = Math.max(sMinWidgetCellHSpan, Math.min(sMaxWidgetCellHSpan,
594 mWorkspaceWidgetLayout.estimateCellHSpan(info.minWidth)));
Winson Chung80baf5a2010-08-09 16:03:15 -0700595
Winson Chunge3193b92010-09-10 11:44:42 -0700596 // create a new page if necessary
597 if ((numCellsInRow + cellSpanX) > maxNumCellsPerRow) {
598 numCellsInRow = 0;
599 newPage = new ArrayList<AppWidgetProviderInfo>();
600 mWidgetPages.add(newPage);
Winson Chung80baf5a2010-08-09 16:03:15 -0700601 }
602
Winson Chunge3193b92010-09-10 11:44:42 -0700603 // add the item to the current page
604 newPage.add(info);
605 numCellsInRow += cellSpanX;
Winson Chung80baf5a2010-08-09 16:03:15 -0700606 }
Winson Chunge3193b92010-09-10 11:44:42 -0700607
Winson Chung80baf5a2010-08-09 16:03:15 -0700608 return mWidgetPages.size();
609 }
610
Winson Chunge3193b92010-09-10 11:44:42 -0700611 /**
Winson Chung7da10252010-10-28 16:07:04 -0700612 * Helper function to draw a drawable to the specified canvas with the specified bounds.
613 */
Winson Chung45e1d6e2010-11-09 17:19:49 -0800614 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h) {
Winson Chung7da10252010-10-28 16:07:04 -0700615 if (bitmap != null) mCanvas.setBitmap(bitmap);
616 mCanvas.save();
Winson Chung45e1d6e2010-11-09 17:19:49 -0800617 d.setBounds(x, y, x+w, y+h);
Winson Chung7da10252010-10-28 16:07:04 -0700618 d.draw(mCanvas);
619 mCanvas.restore();
620 }
621
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800622 /*
623 * This method fetches an xml file specified in the manifest identified by
624 * WallpaperManager.WALLPAPER_PREVIEW_META_DATA). The xml file specifies
625 * an image which will be used as the wallpaper preview for an activity
626 * which responds to ACTION_SET_WALLPAPER. This image is returned and used
627 * in the customize drawer.
628 */
629 private Drawable parseWallpaperPreviewXml(ComponentName component, ResolveInfo ri) {
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800630 ActivityInfo activityInfo = ri.activityInfo;
631 XmlResourceParser parser = null;
632 try {
633 parser = activityInfo.loadXmlMetaData(mPackageManager,
634 WallpaperManager.WALLPAPER_PREVIEW_META_DATA);
635 if (parser == null) {
636 Slog.w(TAG, "No " + WallpaperManager.WALLPAPER_PREVIEW_META_DATA + " meta-data for "
637 + "wallpaper provider '" + component + '\'');
638 return null;
639 }
640
641 AttributeSet attrs = Xml.asAttributeSet(parser);
642
643 int type;
644 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
645 && type != XmlPullParser.START_TAG) {
646 // drain whitespace, comments, etc.
647 }
648
649 String nodeName = parser.getName();
650 if (!"wallpaper-preview".equals(nodeName)) {
651 Slog.w(TAG, "Meta-data does not start with wallpaper-preview tag for "
652 + "wallpaper provider '" + component + '\'');
653 return null;
654 }
655
656 // If metaData was null, we would have returned earlier when getting
657 // the parser No need to do the check here
658 Resources res = mPackageManager.getResourcesForApplication(
659 activityInfo.applicationInfo);
660
661 TypedArray sa = res.obtainAttributes(attrs,
662 com.android.internal.R.styleable.WallpaperPreviewInfo);
663
664 TypedValue value = sa.peekValue(
665 com.android.internal.R.styleable.WallpaperPreviewInfo_staticWallpaperPreview);
666 if (value == null) return null;
667
668 return res.getDrawable(value.resourceId);
669 } catch (Exception e) {
670 Slog.w(TAG, "XML parsing failed for wallpaper provider '" + component + '\'', e);
671 return null;
672 } finally {
673 if (parser != null) parser.close();
674 }
675 }
676
Winson Chung7da10252010-10-28 16:07:04 -0700677 /**
Winson Chung45e1d6e2010-11-09 17:19:49 -0800678 * This method will extract the preview image specified by the wallpaper source provider (if it
679 * exists) otherwise, it will try to generate a default image preview.
680 */
Winson Chung29d6fea2010-12-01 15:47:31 -0800681 private FastBitmapDrawable getWallpaperPreview(ResolveInfo info) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800682 // To be implemented later: resolving the up-to-date wallpaper thumbnail
683
684 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
685 final int dim = mWorkspaceWidgetLayout.estimateCellWidth(mWallpaperCellHSpan);
686 Resources resources = mLauncher.getResources();
687
688 // Create a new bitmap to hold the widget preview
689 int width = (int) (dim * sScaleFactor);
690 int height = (int) (dim * sScaleFactor);
691 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800692
693 Drawable background = parseWallpaperPreviewXml(
694 new ComponentName(info.activityInfo.packageName, info.activityInfo.name), info);
695 boolean foundCustomDrawable = background != null;
696
697 if (!foundCustomDrawable) {
698 background = resources.getDrawable(R.drawable.default_widget_preview);
699 }
700
Winson Chung45e1d6e2010-11-09 17:19:49 -0800701 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
702
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800703 // If we don't have a custom icon, we use the app icon on the default background
704 if (!foundCustomDrawable) {
705 try {
706 final IconCache iconCache =
707 ((LauncherApplication) mLauncher.getApplication()).getIconCache();
708 Drawable icon = new FastBitmapDrawable(Utilities.createIconBitmap(
709 iconCache.getFullResIcon(info, mPackageManager), mContext));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800710
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800711 final int iconSize = minDim / 2;
712 final int offset = iconSize / 4;
713 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
714 } catch (Resources.NotFoundException e) {
715 // if we can't find the icon, then just don't draw it
716 }
Winson Chung45e1d6e2010-11-09 17:19:49 -0800717 }
718
Winson Chung29d6fea2010-12-01 15:47:31 -0800719 FastBitmapDrawable drawable = new FastBitmapDrawable(bitmap);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800720 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
721 return drawable;
722 }
723
724 /**
Winson Chunge3193b92010-09-10 11:44:42 -0700725 * This method will extract the preview image specified by the widget developer (if it exists),
726 * otherwise, it will try to generate a default image preview with the widget's package icon.
Winson Chung45e1d6e2010-11-09 17:19:49 -0800727 * @return the drawable that will be used and sized in the ImageView to represent the widget
Winson Chunge3193b92010-09-10 11:44:42 -0700728 */
Winson Chung29d6fea2010-12-01 15:47:31 -0800729 private FastBitmapDrawable getWidgetPreview(AppWidgetProviderInfo info) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800730 final PackageManager packageManager = mPackageManager;
Winson Chung80baf5a2010-08-09 16:03:15 -0700731 String packageName = info.provider.getPackageName();
732 Drawable drawable = null;
Winson Chung29d6fea2010-12-01 15:47:31 -0800733 FastBitmapDrawable newDrawable = null;
Winson Chung80baf5a2010-08-09 16:03:15 -0700734 if (info.previewImage != 0) {
735 drawable = packageManager.getDrawable(packageName, info.previewImage, null);
736 if (drawable == null) {
737 Log.w(TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
738 + " for provider: " + info.provider);
Winson Chung80baf5a2010-08-09 16:03:15 -0700739 }
740 }
741
742 // If we don't have a preview image, create a default one
Winson Chung7da10252010-10-28 16:07:04 -0700743 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
744 final int maxDim = mWorkspaceWidgetLayout.estimateCellWidth(3);
Winson Chung80baf5a2010-08-09 16:03:15 -0700745 if (drawable == null) {
746 Resources resources = mLauncher.getResources();
747
Winson Chung80baf5a2010-08-09 16:03:15 -0700748 // Create a new bitmap to hold the widget preview
Winson Chunge3193b92010-09-10 11:44:42 -0700749 int width = (int) (Math.max(minDim, Math.min(maxDim, info.minWidth)) * sScaleFactor);
750 int height = (int) (Math.max(minDim, Math.min(maxDim, info.minHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700751 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
752 final Drawable background = resources.getDrawable(R.drawable.default_widget_preview);
753 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
Winson Chung80baf5a2010-08-09 16:03:15 -0700754
Winson Chung45e1d6e2010-11-09 17:19:49 -0800755 // Draw the icon flush left
Winson Chung80baf5a2010-08-09 16:03:15 -0700756 try {
Winson Chung80baf5a2010-08-09 16:03:15 -0700757 Drawable icon = null;
Winson Chunge3193b92010-09-10 11:44:42 -0700758 if (info.icon > 0) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700759 icon = packageManager.getDrawable(packageName, info.icon, null);
Winson Chung5f941722010-09-28 16:36:43 -0700760 }
761 if (icon == null) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700762 icon = resources.getDrawable(R.drawable.ic_launcher_application);
763 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700764
Winson Chunge3193b92010-09-10 11:44:42 -0700765 final int iconSize = minDim / 2;
766 final int offset = iconSize / 4;
Winson Chung45e1d6e2010-11-09 17:19:49 -0800767 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
Winson Chung80baf5a2010-08-09 16:03:15 -0700768 } catch (Resources.NotFoundException e) {
769 // if we can't find the icon, then just don't draw it
770 }
771
Winson Chung29d6fea2010-12-01 15:47:31 -0800772 newDrawable = new FastBitmapDrawable(bitmap);
Winson Chung7da10252010-10-28 16:07:04 -0700773 } else {
774 // Scale down the preview if necessary
Winson Chung94ba5b12010-11-08 17:17:47 -0800775 final float imageWidth = drawable.getIntrinsicWidth();
776 final float imageHeight = drawable.getIntrinsicHeight();
777 final float aspect = (float) imageWidth / imageHeight;
778 final int scaledWidth =
779 (int) (Math.max(minDim, Math.min(maxDim, imageWidth)) * sScaleFactor);
780 final int scaledHeight =
781 (int) (Math.max(minDim, Math.min(maxDim, imageHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700782 int width;
783 int height;
Winson Chung94ba5b12010-11-08 17:17:47 -0800784 if (aspect >= 1.0f) {
Winson Chung7da10252010-10-28 16:07:04 -0700785 width = scaledWidth;
Winson Chung94ba5b12010-11-08 17:17:47 -0800786 height = (int) (((float) scaledWidth / imageWidth) * imageHeight);
Winson Chung7da10252010-10-28 16:07:04 -0700787 } else {
788 height = scaledHeight;
Winson Chung94ba5b12010-11-08 17:17:47 -0800789 width = (int) (((float) scaledHeight / imageHeight) * imageWidth);
Winson Chung7da10252010-10-28 16:07:04 -0700790 }
791
792 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
793 renderDrawableToBitmap(drawable, bitmap, 0, 0, width, height);
794
Winson Chung29d6fea2010-12-01 15:47:31 -0800795 newDrawable = new FastBitmapDrawable(bitmap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700796 }
Winson Chung29d6fea2010-12-01 15:47:31 -0800797 newDrawable.setBounds(0, 0, newDrawable.getIntrinsicWidth(),
798 newDrawable.getIntrinsicHeight());
799 return newDrawable;
Winson Chung80baf5a2010-08-09 16:03:15 -0700800 }
801
802 private void setupPage(PagedViewCellLayout layout) {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700803 layout.setCellCount(mCellCountX, mCellCountY);
804 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop, mPageLayoutPaddingRight,
805 mPageLayoutPaddingBottom);
Winson Chungef0066b2010-10-21 11:55:00 -0700806 layout.setGap(mPageLayoutWidthGap, mPageLayoutHeightGap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700807 }
808
Winson Chunge3193b92010-09-10 11:44:42 -0700809 private void setupWorkspaceLayout() {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700810 mWorkspaceWidgetLayout.setCellCount(mCellCountX, mCellCountY);
Winson Chunge3193b92010-09-10 11:44:42 -0700811 mWorkspaceWidgetLayout.setPadding(20, 10, 20, 0);
812
813 mMaxWidgetWidth = mWorkspaceWidgetLayout.estimateCellWidth(sMaxWidgetCellHSpan);
814 }
815
Winson Chung80baf5a2010-08-09 16:03:15 -0700816 private void syncWidgetPages() {
817 if (mWidgetList == null) return;
818
Winson Chunge3193b92010-09-10 11:44:42 -0700819 // we need to repopulate with the LinearLayout layout for the widget pages
820 removeAllViews();
Winson Chung80baf5a2010-08-09 16:03:15 -0700821 int numPages = relayoutWidgets();
Winson Chunge3193b92010-09-10 11:44:42 -0700822 for (int i = 0; i < numPages; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800823 LinearLayout layout = new PagedViewExtendedLayout(getContext());
Winson Chunge3193b92010-09-10 11:44:42 -0700824 layout.setGravity(Gravity.CENTER_HORIZONTAL);
Winson Chungef0066b2010-10-21 11:55:00 -0700825 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
826 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
Winson Chunge3193b92010-09-10 11:44:42 -0700827
Winson Chunge22a8e92010-11-12 13:40:58 -0800828 addView(layout, new LinearLayout.LayoutParams(
829 LinearLayout.LayoutParams.WRAP_CONTENT,
830 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung80baf5a2010-08-09 16:03:15 -0700831 }
832 }
833
834 private void syncWidgetPageItems(int page) {
835 // ensure that we have the right number of items on the pages
Winson Chunge3193b92010-09-10 11:44:42 -0700836 LinearLayout layout = (LinearLayout) getChildAt(page);
837 final ArrayList<AppWidgetProviderInfo> list = mWidgetPages.get(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700838 final int count = list.size();
Winson Chung04998342011-01-05 13:54:43 -0800839 final int numPages = getPageCount();
Winson Chung80baf5a2010-08-09 16:03:15 -0700840 layout.removeAllViews();
841 for (int i = 0; i < count; ++i) {
Winson Chung68846fd2010-10-29 11:00:27 -0700842 final AppWidgetProviderInfo info = (AppWidgetProviderInfo) list.get(i);
843 final PendingAddWidgetInfo createItemInfo = new PendingAddWidgetInfo(info, null, null);
Winson Chung29d6fea2010-12-01 15:47:31 -0800844 final int[] cellSpans = CellLayout.rectToCell(getResources(), info.minWidth,
845 info.minHeight, null);
846 final FastBitmapDrawable icon = getWidgetPreview(info);
Winson Chungd0d43012010-09-26 17:26:45 -0700847
Winson Chung29d6fea2010-12-01 15:47:31 -0800848 PagedViewWidget l = (PagedViewWidget) mInflater.inflate(
Winson Chunge3193b92010-09-10 11:44:42 -0700849 R.layout.customize_paged_view_widget, layout, false);
Winson Chung04998342011-01-05 13:54:43 -0800850 l.applyFromAppWidgetProviderInfo(info, icon, mMaxWidgetWidth, cellSpans,
851 mPageViewIconCache, (numPages > 1));
Winson Chungd0d43012010-09-26 17:26:45 -0700852 l.setTag(createItemInfo);
853 l.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800854 l.setOnTouchListener(this);
Winson Chunge3193b92010-09-10 11:44:42 -0700855 l.setOnLongClickListener(this);
Winson Chung80baf5a2010-08-09 16:03:15 -0700856
Winson Chunge3193b92010-09-10 11:44:42 -0700857 layout.addView(l);
Winson Chung80baf5a2010-08-09 16:03:15 -0700858 }
859 }
860
Winson Chung45e1d6e2010-11-09 17:19:49 -0800861 private void syncWallpaperPages() {
862 if (mWallpaperList == null) return;
863
864 // We need to repopulate the LinearLayout for the wallpaper pages
865 removeAllViews();
866 int numPages = (int) Math.ceil((float) (mWallpaperList.size() * mWallpaperCellHSpan) /
Winson Chung78bd53c2010-12-09 13:50:24 -0800867 mMaxWallpaperCellHSpan);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800868 for (int i = 0; i < numPages; ++i) {
869 LinearLayout layout = new PagedViewExtendedLayout(getContext());
870 layout.setGravity(Gravity.CENTER_HORIZONTAL);
871 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
872 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
873
Winson Chunge22a8e92010-11-12 13:40:58 -0800874 addView(layout, new LinearLayout.LayoutParams(
875 LinearLayout.LayoutParams.WRAP_CONTENT,
876 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800877 }
878 }
879
880 private void syncWallpaperPageItems(int page) {
881 // Load the items on to the pages
882 LinearLayout layout = (LinearLayout) getChildAt(page);
883 layout.removeAllViews();
884 final int count = mWallpaperList.size();
Winson Chung04998342011-01-05 13:54:43 -0800885 final int numPages = getPageCount();
Winson Chung78bd53c2010-12-09 13:50:24 -0800886 final int numItemsPerPage = mMaxWallpaperCellHSpan / mWallpaperCellHSpan;
Winson Chungd28ed492010-11-22 14:34:57 -0800887 final int startIndex = page * numItemsPerPage;
888 final int endIndex = Math.min(count, startIndex + numItemsPerPage);
889 for (int i = startIndex; i < endIndex; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800890 final ResolveInfo info = mWallpaperList.get(i);
Winson Chung29d6fea2010-12-01 15:47:31 -0800891 final FastBitmapDrawable icon = getWallpaperPreview(info);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800892
Winson Chung29d6fea2010-12-01 15:47:31 -0800893 PagedViewWidget l = (PagedViewWidget) mInflater.inflate(
Winson Chung45e1d6e2010-11-09 17:19:49 -0800894 R.layout.customize_paged_view_wallpaper, layout, false);
Winson Chung04998342011-01-05 13:54:43 -0800895 l.applyFromWallpaperInfo(info, mPackageManager, icon, mMaxWidgetWidth,
896 mPageViewIconCache, (numPages > 1));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800897 l.setTag(info);
898 l.setOnClickListener(this);
899
Winson Chung45e1d6e2010-11-09 17:19:49 -0800900 layout.addView(l);
901 }
902 }
903
Winson Chung80baf5a2010-08-09 16:03:15 -0700904 private void syncListPages(List<ResolveInfo> list) {
Winson Chunge3193b92010-09-10 11:44:42 -0700905 // we need to repopulate with PagedViewCellLayouts
906 removeAllViews();
907
Winson Chung80baf5a2010-08-09 16:03:15 -0700908 // ensure that we have the right number of pages
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700909 int numPages = (int) Math.ceil((float) list.size() / (mCellCountX * mCellCountY));
Winson Chunge3193b92010-09-10 11:44:42 -0700910 for (int i = 0; i < numPages; ++i) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700911 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
912 setupPage(layout);
913 addView(layout);
914 }
915 }
916
917 private void syncListPageItems(int page, List<ResolveInfo> list) {
918 // ensure that we have the right number of items on the pages
Winson Chung04998342011-01-05 13:54:43 -0800919 final int numPages = getPageCount();
920 final int numCells = mCellCountX * mCellCountY;
921 final int startIndex = page * numCells;
922 final int endIndex = Math.min(startIndex + numCells, list.size());
923 final PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700924 // TODO: we can optimize by just re-applying to existing views
925 layout.removeAllViews();
926 for (int i = startIndex; i < endIndex; ++i) {
927 ResolveInfo info = list.get(i);
Winson Chungd0d43012010-09-26 17:26:45 -0700928 PendingAddItemInfo createItemInfo = new PendingAddItemInfo();
929
Winson Chung241c3b42010-08-25 16:53:03 -0700930 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
931 R.layout.customize_paged_view_item, layout, false);
Michael Jurkac9a96192010-11-01 11:52:08 -0700932 icon.applyFromResolveInfo(info, mPackageManager, mPageViewIconCache,
Winson Chung04998342011-01-05 13:54:43 -0800933 ((LauncherApplication) mLauncher.getApplication()).getIconCache(),
934 (numPages > 1));
Winson Chungd0d43012010-09-26 17:26:45 -0700935 switch (mCustomizationType) {
936 case WallpaperCustomization:
Winson Chunge8878e32010-09-15 20:37:09 -0700937 icon.setOnClickListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700938 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700939 case ShortcutCustomization:
940 createItemInfo.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
941 createItemInfo.componentName = new ComponentName(info.activityInfo.packageName,
942 info.activityInfo.name);
943 icon.setTag(createItemInfo);
944 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800945 icon.setOnTouchListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700946 icon.setOnLongClickListener(this);
947 break;
948 default:
949 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700950 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700951
952 final int index = i - startIndex;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700953 final int x = index % mCellCountX;
954 final int y = index / mCellCountX;
955 setupPage(layout);
956 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
957 }
958 }
959
960 private void syncAppPages() {
961 if (mApps == null) return;
962
963 // We need to repopulate with PagedViewCellLayouts
964 removeAllViews();
965
966 // Ensure that we have the right number of pages
967 int numPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
968 for (int i = 0; i < numPages; ++i) {
969 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
970 setupPage(layout);
971 addView(layout);
972 }
973 }
974
975 private void syncAppPageItems(int page) {
976 if (mApps == null) return;
977
978 // ensure that we have the right number of items on the pages
Winson Chung04998342011-01-05 13:54:43 -0800979 final int numPages = getPageCount();
980 final int numCells = mCellCountX * mCellCountY;
981 final int startIndex = page * numCells;
982 final int endIndex = Math.min(startIndex + numCells, mApps.size());
983 final PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700984 // TODO: we can optimize by just re-applying to existing views
985 layout.removeAllViews();
986 for (int i = startIndex; i < endIndex; ++i) {
987 final ApplicationInfo info = mApps.get(i);
988 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
989 R.layout.all_apps_paged_view_application, layout, false);
Winson Chung04998342011-01-05 13:54:43 -0800990 icon.applyFromApplicationInfo(info, mPageViewIconCache, true, (numPages > 1));
Winson Chungd0d43012010-09-26 17:26:45 -0700991 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800992 icon.setOnTouchListener(this);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700993 icon.setOnLongClickListener(this);
994
995 final int index = i - startIndex;
996 final int x = index % mCellCountX;
997 final int y = index / mCellCountX;
Winson Chunge3193b92010-09-10 11:44:42 -0700998 setupPage(layout);
Winson Chung241c3b42010-08-25 16:53:03 -0700999 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
Winson Chung80baf5a2010-08-09 16:03:15 -07001000 }
1001 }
1002
Winson Chung80baf5a2010-08-09 16:03:15 -07001003 @Override
1004 public void syncPages() {
Winson Chunge3193b92010-09-10 11:44:42 -07001005 boolean centerPagedViewCellLayouts = false;
Winson Chung80baf5a2010-08-09 16:03:15 -07001006 switch (mCustomizationType) {
1007 case WidgetCustomization:
1008 syncWidgetPages();
1009 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001010 case ShortcutCustomization:
1011 syncListPages(mShortcutList);
Winson Chunge3193b92010-09-10 11:44:42 -07001012 centerPagedViewCellLayouts = true;
Winson Chung80baf5a2010-08-09 16:03:15 -07001013 break;
1014 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -08001015 syncWallpaperPages();
Winson Chung80baf5a2010-08-09 16:03:15 -07001016 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -07001017 case ApplicationCustomization:
1018 syncAppPages();
1019 centerPagedViewCellLayouts = false;
1020 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001021 default:
1022 removeAllViews();
Winson Chung86f77532010-08-24 11:08:22 -07001023 setCurrentPage(0);
Winson Chung80baf5a2010-08-09 16:03:15 -07001024 break;
1025 }
1026
1027 // only try and center the page if there is one page
1028 final int childCount = getChildCount();
Winson Chunge3193b92010-09-10 11:44:42 -07001029 if (centerPagedViewCellLayouts) {
1030 if (childCount == 1) {
1031 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(0);
1032 layout.enableCenteredContent(true);
1033 } else {
1034 for (int i = 0; i < childCount; ++i) {
1035 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(i);
1036 layout.enableCenteredContent(false);
1037 }
Winson Chung80baf5a2010-08-09 16:03:15 -07001038 }
1039 }
1040
1041 // bound the current page
Winson Chung86f77532010-08-24 11:08:22 -07001042 setCurrentPage(Math.max(0, Math.min(childCount - 1, getCurrentPage())));
Winson Chung80baf5a2010-08-09 16:03:15 -07001043 }
1044
1045 @Override
1046 public void syncPageItems(int page) {
1047 switch (mCustomizationType) {
1048 case WidgetCustomization:
1049 syncWidgetPageItems(page);
1050 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001051 case ShortcutCustomization:
1052 syncListPageItems(page, mShortcutList);
1053 break;
1054 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -08001055 syncWallpaperPageItems(page);
Winson Chung80baf5a2010-08-09 16:03:15 -07001056 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -07001057 case ApplicationCustomization:
1058 syncAppPageItems(page);
1059 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001060 }
1061 }
Winson Chunge3193b92010-09-10 11:44:42 -07001062
Winson Chungd0d43012010-09-26 17:26:45 -07001063 @Override
Winson Chunge3193b92010-09-10 11:44:42 -07001064 protected int getAssociatedLowerPageBound(int page) {
1065 return 0;
1066 }
Winson Chungd0d43012010-09-26 17:26:45 -07001067 @Override
Winson Chunge3193b92010-09-10 11:44:42 -07001068 protected int getAssociatedUpperPageBound(int page) {
1069 return getChildCount();
1070 }
Winson Chungd0d43012010-09-26 17:26:45 -07001071
1072 @Override
1073 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Michael Jurka3125d9d2010-09-27 11:30:20 -07001074 mode.setTitle(mChoiceModeTitleText);
Winson Chungd0d43012010-09-26 17:26:45 -07001075 return true;
1076 }
1077
1078 @Override
1079 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
1080 return true;
1081 }
1082
1083 @Override
1084 public void onDestroyActionMode(ActionMode mode) {
1085 endChoiceMode();
1086 }
1087
1088 @Override
1089 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
1090 return false;
1091 }
Winson Chung80baf5a2010-08-09 16:03:15 -07001092}