blob: 0aef4dd534094cb7be7d630c1936b13b9bf41254 [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 Chung400438b2011-01-16 17:53:48 -0800331 mLauncher.unlockScreenOrientation();
Winson Chung80baf5a2010-08-09 16:03:15 -0700332 }
333
334 @Override
Patrick Dubroya669d792010-11-23 14:40:33 -0800335 public void onDragViewVisible() {
336 }
337
Adam Cohen120980b2010-12-08 11:05:37 -0800338 class ScaleAlphaInterpolator implements Interpolator {
339 public float getInterpolation(float input) {
340 float pivot = 0.5f;
341 if (input < pivot) {
342 return 0;
343 } else {
344 return (input - pivot)/(1 - pivot);
345 }
346 }
347 }
348
349 private void animateItemOntoScreen(View dragView,
350 final CellLayout layout, final ItemInfo info) {
351 mTmpFloatPos[0] = layout.getWidth() / 2;
352 mTmpFloatPos[1] = layout.getHeight() / 2;
353 mLauncher.getWorkspace().mapPointFromChildToSelf(layout, mTmpFloatPos);
354
355 final DragLayer dragLayer = (DragLayer) mLauncher.findViewById(R.id.drag_layer);
356 final View dragCopy = dragLayer.createDragView(dragView);
357 dragCopy.setAlpha(1.0f);
358
359 int dragViewWidth = dragView.getMeasuredWidth();
360 int dragViewHeight = dragView.getMeasuredHeight();
361 float heightOffset = 0;
362 float widthOffset = 0;
363
364 if (dragView instanceof ImageView) {
365 Drawable d = ((ImageView) dragView).getDrawable();
366 int width = d.getIntrinsicWidth();
367 int height = d.getIntrinsicHeight();
368
369 if ((1.0 * width / height) >= (1.0f * dragViewWidth) / dragViewHeight) {
370 float f = (dragViewWidth / (width * 1.0f));
371 heightOffset = ANIMATION_SCALE * (dragViewHeight - f * height) / 2;
372 } else {
373 float f = (dragViewHeight / (height * 1.0f));
374 widthOffset = ANIMATION_SCALE * (dragViewWidth - f * width) / 2;
375 }
376 }
377
378 float toX = mTmpFloatPos[0] - dragView.getMeasuredWidth() / 2 + widthOffset;
379 float toY = mTmpFloatPos[1] - dragView.getMeasuredHeight() / 2 + heightOffset;
380
381 ObjectAnimator posAnim = ObjectAnimator.ofPropertyValuesHolder(dragCopy,
382 PropertyValuesHolder.ofFloat("x", toX),
383 PropertyValuesHolder.ofFloat("y", toY));
384 posAnim.setInterpolator(mQuintEaseOutInterpolator);
385 posAnim.setDuration(ANIMATION_DURATION);
386
Patrick Dubroy047379a2010-12-19 22:02:04 -0800387 posAnim.addListener(new AnimatorListenerAdapter() {
Adam Cohen120980b2010-12-08 11:05:37 -0800388 public void onAnimationEnd(Animator animation) {
389 dragLayer.removeView(dragCopy);
390 mLauncher.addExternalItemToScreen(info, layout);
391 post(new Runnable() {
392 public void run() {
393 layout.animateDrop();
394 }
395 });
396 }
397 });
398
399 ObjectAnimator scaleAlphaAnim = ObjectAnimator.ofPropertyValuesHolder(dragCopy,
400 PropertyValuesHolder.ofFloat("alpha", 1.0f, 0.0f),
401 PropertyValuesHolder.ofFloat("scaleX", ANIMATION_SCALE),
402 PropertyValuesHolder.ofFloat("scaleY", ANIMATION_SCALE));
403 scaleAlphaAnim.setInterpolator(mScaleAlphaInterpolator);
404 scaleAlphaAnim.setDuration(ANIMATION_DURATION);
405
406 posAnim.start();
407 scaleAlphaAnim.start();
408 }
409
Patrick Dubroya669d792010-11-23 14:40:33 -0800410 @Override
Adam Cohen120980b2010-12-08 11:05:37 -0800411 public void onClick(final View v) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800412 // Return early if this is not initiated from a touch
413 if (!v.isInTouchMode()) return;
414 // Return early if we are still animating the pages
Winson Chung4f9e1072010-11-15 15:28:24 -0800415 if (mNextPage != INVALID_PAGE) return;
Winson Chunge8878e32010-09-15 20:37:09 -0700416
Winson Chungd0d43012010-09-26 17:26:45 -0700417 // On certain pages, we allow single tap to mark items as selected so that they can be
418 // dropped onto the mini workspaces
Michael Jurka3125d9d2010-09-27 11:30:20 -0700419 boolean enterChoiceMode = false;
Winson Chungd0d43012010-09-26 17:26:45 -0700420 switch (mCustomizationType) {
421 case WidgetCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700422 mChoiceModeTitleText = R.string.cab_widget_selection_text;
423 enterChoiceMode = true;
424 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700425 case ApplicationCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700426 mChoiceModeTitleText = R.string.cab_app_selection_text;
427 enterChoiceMode = true;
428 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700429 case ShortcutCustomization:
Michael Jurka3125d9d2010-09-27 11:30:20 -0700430 mChoiceModeTitleText = R.string.cab_shortcut_selection_text;
431 enterChoiceMode = true;
432 break;
433 default:
434 break;
435 }
Winson Chungd0d43012010-09-26 17:26:45 -0700436
Michael Jurka3125d9d2010-09-27 11:30:20 -0700437 if (enterChoiceMode) {
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700438 final ItemInfo itemInfo = (ItemInfo) v.getTag();
Winson Chungd0d43012010-09-26 17:26:45 -0700439
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700440 Workspace w = mLauncher.getWorkspace();
441 int currentWorkspaceScreen = mLauncher.getCurrentWorkspaceScreen();
442 final CellLayout cl = (CellLayout)w.getChildAt(currentWorkspaceScreen);
Adam Cohen120980b2010-12-08 11:05:37 -0800443 final View dragView = getDragView(v);
Michael Jurkae17e19c2010-09-28 11:01:39 -0700444
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700445 animateClickFeedback(v, new Runnable() {
446 @Override
447 public void run() {
Patrick Dubroy047379a2010-12-19 22:02:04 -0800448 cl.calculateSpans(itemInfo);
449 if (cl.findCellForSpan(null, itemInfo.spanX, itemInfo.spanY)) {
450 animateItemOntoScreen(dragView, cl, itemInfo);
451 } else {
452 mLauncher.showOutOfSpaceMessage();
453 }
Michael Jurka6b4b25d2010-10-20 18:19:45 -0700454 }
455 });
Winson Chungd0d43012010-09-26 17:26:45 -0700456 return;
Winson Chungd0d43012010-09-26 17:26:45 -0700457 }
458
459 // Otherwise, we just handle the single click here
Winson Chunge8878e32010-09-15 20:37:09 -0700460 switch (mCustomizationType) {
461 case WallpaperCustomization:
462 // animate some feedback to the long press
Winson Chungd0d43012010-09-26 17:26:45 -0700463 final View clickView = v;
Winson Chunge8878e32010-09-15 20:37:09 -0700464 animateClickFeedback(v, new Runnable() {
465 @Override
466 public void run() {
467 // add the shortcut
Winson Chungd0d43012010-09-26 17:26:45 -0700468 ResolveInfo info = (ResolveInfo) clickView.getTag();
Winson Chung24ab2f12010-09-16 14:10:47 -0700469 Intent createWallpapersIntent = new Intent(Intent.ACTION_SET_WALLPAPER);
470 ComponentName name = new ComponentName(info.activityInfo.packageName,
471 info.activityInfo.name);
472 createWallpapersIntent.setComponent(name);
473 mLauncher.processWallpaper(createWallpapersIntent);
Winson Chunge8878e32010-09-15 20:37:09 -0700474 }
475 });
Winson Chungd0d43012010-09-26 17:26:45 -0700476 break;
477 default:
478 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700479 }
480 }
481
Winson Chungcd4bc492010-12-09 18:52:32 -0800482 Bitmap drawableToBitmap(Drawable d, View v) {
483 Bitmap b = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.ARGB_8888);
Michael Jurkaaf91de02010-11-23 16:23:58 -0800484 Canvas c = new Canvas(b);
Winson Chungcd4bc492010-12-09 18:52:32 -0800485 c.translate((v.getWidth() - d.getIntrinsicWidth()) / 2, v.getPaddingTop());
Michael Jurkaaf91de02010-11-23 16:23:58 -0800486 d.draw(c);
487 return b;
488 }
489
Adam Cohen120980b2010-12-08 11:05:37 -0800490 private View getDragView(View v) {
491 return (mCustomizationType == CustomizationType.WidgetCustomization) ?
492 v.findViewById(R.id.widget_preview) : v;
493 }
494
Michael Jurka72b079e2010-12-10 01:03:53 -0800495 protected boolean beginDragging(View v) {
Winson Chung304dcde2011-01-07 11:17:23 -0800496 if (!v.isInTouchMode()) return false;
497 if (!super.beginDragging(v)) return false;
498
Winson Chungd0d43012010-09-26 17:26:45 -0700499 // End the current choice mode before we start dragging anything
500 if (isChoiceMode(CHOICE_MODE_SINGLE)) {
501 endChoiceMode();
502 }
Winson Chung59e1f9a2010-12-21 11:31:54 -0800503 boolean result = false;
Winson Chung400438b2011-01-16 17:53:48 -0800504 mLauncher.lockScreenOrientation();
Winson Chung80baf5a2010-08-09 16:03:15 -0700505 switch (mCustomizationType) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800506 case WidgetCustomization: {
Adam Cohen120980b2010-12-08 11:05:37 -0800507 // Get the widget preview as the drag representation
Michael Jurkad3ef3062010-11-23 16:23:58 -0800508 final LinearLayout l = (LinearLayout) v;
Winson Chungcd4bc492010-12-09 18:52:32 -0800509 final ImageView i = (ImageView) l.findViewById(R.id.widget_preview);
510 final Drawable icon = i.getDrawable();
511 Bitmap b = drawableToBitmap(icon, i);
Michael Jurka3e7c7632010-10-02 16:01:03 -0700512 PendingAddWidgetInfo createWidgetInfo = (PendingAddWidgetInfo) v.getTag();
Michael Jurkaa63c4522010-08-19 13:52:27 -0700513
Michael Jurkad3ef3062010-11-23 16:23:58 -0800514 int[] spanXY = CellLayout.rectToCell(
515 getResources(), createWidgetInfo.minWidth, createWidgetInfo.minHeight, null);
516 createWidgetInfo.spanX = spanXY[0];
517 createWidgetInfo.spanY = spanXY[1];
518 mLauncher.getWorkspace().onDragStartedWithItemSpans(spanXY[0], spanXY[1], b);
519 mDragController.startDrag(
Winson Chungcd4bc492010-12-09 18:52:32 -0800520 i, b, this, createWidgetInfo, DragController.DRAG_ACTION_COPY, null);
521 b.recycle();
Winson Chung59e1f9a2010-12-21 11:31:54 -0800522 result = true;
523 break;
Michael Jurkad3ef3062010-11-23 16:23:58 -0800524 }
525 case ShortcutCustomization: {
526 // get icon (top compound drawable, index is 1)
Winson Chungcd4bc492010-12-09 18:52:32 -0800527 final TextView tv = (TextView) v;
528 final Drawable icon = tv.getCompoundDrawables()[1];
529 Bitmap b = drawableToBitmap(icon, tv);
Adam Cohen120980b2010-12-08 11:05:37 -0800530 PendingAddItemInfo createItemInfo = (PendingAddItemInfo) v.getTag();
Winson Chungcd4bc492010-12-09 18:52:32 -0800531
Michael Jurkad3ef3062010-11-23 16:23:58 -0800532 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1, b);
Winson Chungcd4bc492010-12-09 18:52:32 -0800533 mDragController.startDrag(v, b, this, createItemInfo, DragController.DRAG_ACTION_COPY,
534 null);
535 b.recycle();
Winson Chung59e1f9a2010-12-21 11:31:54 -0800536 result = true;
537 break;
Michael Jurkad3ef3062010-11-23 16:23:58 -0800538 }
539 case ApplicationCustomization: {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700540 // Pick up the application for dropping
Michael Jurkad3ef3062010-11-23 16:23:58 -0800541 // get icon (top compound drawable, index is 1)
Winson Chungcd4bc492010-12-09 18:52:32 -0800542 final TextView tv = (TextView) v;
543 final Drawable icon = tv.getCompoundDrawables()[1];
544 Bitmap b = drawableToBitmap(icon, tv);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700545 ApplicationInfo app = (ApplicationInfo) v.getTag();
546 app = new ApplicationInfo(app);
547
Michael Jurkad3ef3062010-11-23 16:23:58 -0800548 mLauncher.getWorkspace().onDragStartedWithItemSpans(1, 1, b);
Winson Chungcd4bc492010-12-09 18:52:32 -0800549 mDragController.startDrag(v, b, this, app, DragController.DRAG_ACTION_COPY, null);
550 b.recycle();
Winson Chung59e1f9a2010-12-21 11:31:54 -0800551 result = true;
552 break;
Winson Chung80baf5a2010-08-09 16:03:15 -0700553 }
Michael Jurkad3ef3062010-11-23 16:23:58 -0800554 }
Winson Chung59e1f9a2010-12-21 11:31:54 -0800555
556 // We toggle the checked state _after_ we create the view for the drag in case toggling the
557 // checked state changes the view's look
558 if (v instanceof Checkable) {
559 // In preparation for drag, we always reset the checked grand children regardless of
560 // what choice mode we are in
561 resetCheckedGrandchildren();
562
563 // Toggle the selection on the dragged app
564 Checkable checkable = (Checkable) v;
565
566 // Note: we toggle the checkable state to actually cause an alpha fade for the duration
567 // of the drag of the item. (The fade-in will occur when all checked states are
568 // disabled when dragging ends)
569 checkable.toggle();
570 }
571
572 return result;
Winson Chung80baf5a2010-08-09 16:03:15 -0700573 }
574
Winson Chunge3193b92010-09-10 11:44:42 -0700575 /**
576 * Pre-processes the layout of the different widget pages.
577 * @return the number of pages of widgets that we have
578 */
Winson Chung80baf5a2010-08-09 16:03:15 -0700579 private int relayoutWidgets() {
Winson Chunge3193b92010-09-10 11:44:42 -0700580 if (mWidgetList.isEmpty()) return 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700581
Winson Chunge3193b92010-09-10 11:44:42 -0700582 // create a new page for the first set of widgets
583 ArrayList<AppWidgetProviderInfo> newPage = new ArrayList<AppWidgetProviderInfo>();
Winson Chung80baf5a2010-08-09 16:03:15 -0700584 mWidgetPages.clear();
Winson Chunge3193b92010-09-10 11:44:42 -0700585 mWidgetPages.add(newPage);
586
587 // do this until we have no more widgets to lay out
588 final int maxNumCellsPerRow = mMaxWidgetsCellHSpan;
589 final int widgetCount = mWidgetList.size();
590 int numCellsInRow = 0;
Winson Chung80baf5a2010-08-09 16:03:15 -0700591 for (int i = 0; i < widgetCount; ++i) {
Winson Chunge3193b92010-09-10 11:44:42 -0700592 final AppWidgetProviderInfo info = mWidgetList.get(i);
Winson Chung80baf5a2010-08-09 16:03:15 -0700593
Winson Chunge3193b92010-09-10 11:44:42 -0700594 // determine the size of the current widget
595 int cellSpanX = Math.max(sMinWidgetCellHSpan, Math.min(sMaxWidgetCellHSpan,
596 mWorkspaceWidgetLayout.estimateCellHSpan(info.minWidth)));
Winson Chung80baf5a2010-08-09 16:03:15 -0700597
Winson Chunge3193b92010-09-10 11:44:42 -0700598 // create a new page if necessary
599 if ((numCellsInRow + cellSpanX) > maxNumCellsPerRow) {
600 numCellsInRow = 0;
601 newPage = new ArrayList<AppWidgetProviderInfo>();
602 mWidgetPages.add(newPage);
Winson Chung80baf5a2010-08-09 16:03:15 -0700603 }
604
Winson Chunge3193b92010-09-10 11:44:42 -0700605 // add the item to the current page
606 newPage.add(info);
607 numCellsInRow += cellSpanX;
Winson Chung80baf5a2010-08-09 16:03:15 -0700608 }
Winson Chunge3193b92010-09-10 11:44:42 -0700609
Winson Chung80baf5a2010-08-09 16:03:15 -0700610 return mWidgetPages.size();
611 }
612
Winson Chunge3193b92010-09-10 11:44:42 -0700613 /**
Winson Chung7da10252010-10-28 16:07:04 -0700614 * Helper function to draw a drawable to the specified canvas with the specified bounds.
615 */
Winson Chung45e1d6e2010-11-09 17:19:49 -0800616 private void renderDrawableToBitmap(Drawable d, Bitmap bitmap, int x, int y, int w, int h) {
Winson Chung7da10252010-10-28 16:07:04 -0700617 if (bitmap != null) mCanvas.setBitmap(bitmap);
618 mCanvas.save();
Winson Chung45e1d6e2010-11-09 17:19:49 -0800619 d.setBounds(x, y, x+w, y+h);
Winson Chung7da10252010-10-28 16:07:04 -0700620 d.draw(mCanvas);
621 mCanvas.restore();
622 }
623
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800624 /*
625 * This method fetches an xml file specified in the manifest identified by
626 * WallpaperManager.WALLPAPER_PREVIEW_META_DATA). The xml file specifies
627 * an image which will be used as the wallpaper preview for an activity
628 * which responds to ACTION_SET_WALLPAPER. This image is returned and used
629 * in the customize drawer.
630 */
631 private Drawable parseWallpaperPreviewXml(ComponentName component, ResolveInfo ri) {
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800632 ActivityInfo activityInfo = ri.activityInfo;
633 XmlResourceParser parser = null;
634 try {
635 parser = activityInfo.loadXmlMetaData(mPackageManager,
636 WallpaperManager.WALLPAPER_PREVIEW_META_DATA);
637 if (parser == null) {
638 Slog.w(TAG, "No " + WallpaperManager.WALLPAPER_PREVIEW_META_DATA + " meta-data for "
639 + "wallpaper provider '" + component + '\'');
640 return null;
641 }
642
643 AttributeSet attrs = Xml.asAttributeSet(parser);
644
645 int type;
646 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
647 && type != XmlPullParser.START_TAG) {
648 // drain whitespace, comments, etc.
649 }
650
651 String nodeName = parser.getName();
652 if (!"wallpaper-preview".equals(nodeName)) {
653 Slog.w(TAG, "Meta-data does not start with wallpaper-preview tag for "
654 + "wallpaper provider '" + component + '\'');
655 return null;
656 }
657
658 // If metaData was null, we would have returned earlier when getting
659 // the parser No need to do the check here
660 Resources res = mPackageManager.getResourcesForApplication(
661 activityInfo.applicationInfo);
662
663 TypedArray sa = res.obtainAttributes(attrs,
664 com.android.internal.R.styleable.WallpaperPreviewInfo);
665
666 TypedValue value = sa.peekValue(
667 com.android.internal.R.styleable.WallpaperPreviewInfo_staticWallpaperPreview);
668 if (value == null) return null;
669
670 return res.getDrawable(value.resourceId);
671 } catch (Exception e) {
672 Slog.w(TAG, "XML parsing failed for wallpaper provider '" + component + '\'', e);
673 return null;
674 } finally {
675 if (parser != null) parser.close();
676 }
677 }
678
Winson Chung7da10252010-10-28 16:07:04 -0700679 /**
Winson Chung45e1d6e2010-11-09 17:19:49 -0800680 * This method will extract the preview image specified by the wallpaper source provider (if it
681 * exists) otherwise, it will try to generate a default image preview.
682 */
Winson Chung29d6fea2010-12-01 15:47:31 -0800683 private FastBitmapDrawable getWallpaperPreview(ResolveInfo info) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800684 // To be implemented later: resolving the up-to-date wallpaper thumbnail
685
686 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
687 final int dim = mWorkspaceWidgetLayout.estimateCellWidth(mWallpaperCellHSpan);
688 Resources resources = mLauncher.getResources();
689
690 // Create a new bitmap to hold the widget preview
691 int width = (int) (dim * sScaleFactor);
692 int height = (int) (dim * sScaleFactor);
693 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800694
695 Drawable background = parseWallpaperPreviewXml(
696 new ComponentName(info.activityInfo.packageName, info.activityInfo.name), info);
697 boolean foundCustomDrawable = background != null;
698
699 if (!foundCustomDrawable) {
700 background = resources.getDrawable(R.drawable.default_widget_preview);
701 }
702
Winson Chung45e1d6e2010-11-09 17:19:49 -0800703 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
704
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800705 // If we don't have a custom icon, we use the app icon on the default background
706 if (!foundCustomDrawable) {
707 try {
708 final IconCache iconCache =
709 ((LauncherApplication) mLauncher.getApplication()).getIconCache();
710 Drawable icon = new FastBitmapDrawable(Utilities.createIconBitmap(
711 iconCache.getFullResIcon(info, mPackageManager), mContext));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800712
Adam Cohen7b9d3a62010-12-07 21:49:34 -0800713 final int iconSize = minDim / 2;
714 final int offset = iconSize / 4;
715 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
716 } catch (Resources.NotFoundException e) {
717 // if we can't find the icon, then just don't draw it
718 }
Winson Chung45e1d6e2010-11-09 17:19:49 -0800719 }
720
Winson Chung29d6fea2010-12-01 15:47:31 -0800721 FastBitmapDrawable drawable = new FastBitmapDrawable(bitmap);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800722 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
723 return drawable;
724 }
725
726 /**
Winson Chunge3193b92010-09-10 11:44:42 -0700727 * This method will extract the preview image specified by the widget developer (if it exists),
728 * otherwise, it will try to generate a default image preview with the widget's package icon.
Winson Chung45e1d6e2010-11-09 17:19:49 -0800729 * @return the drawable that will be used and sized in the ImageView to represent the widget
Winson Chunge3193b92010-09-10 11:44:42 -0700730 */
Winson Chung29d6fea2010-12-01 15:47:31 -0800731 private FastBitmapDrawable getWidgetPreview(AppWidgetProviderInfo info) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800732 final PackageManager packageManager = mPackageManager;
Winson Chung80baf5a2010-08-09 16:03:15 -0700733 String packageName = info.provider.getPackageName();
734 Drawable drawable = null;
Winson Chung29d6fea2010-12-01 15:47:31 -0800735 FastBitmapDrawable newDrawable = null;
Winson Chung80baf5a2010-08-09 16:03:15 -0700736 if (info.previewImage != 0) {
737 drawable = packageManager.getDrawable(packageName, info.previewImage, null);
738 if (drawable == null) {
739 Log.w(TAG, "Can't load icon drawable 0x" + Integer.toHexString(info.icon)
740 + " for provider: " + info.provider);
Winson Chung80baf5a2010-08-09 16:03:15 -0700741 }
742 }
743
744 // If we don't have a preview image, create a default one
Winson Chung7da10252010-10-28 16:07:04 -0700745 final int minDim = mWorkspaceWidgetLayout.estimateCellWidth(1);
746 final int maxDim = mWorkspaceWidgetLayout.estimateCellWidth(3);
Winson Chung80baf5a2010-08-09 16:03:15 -0700747 if (drawable == null) {
748 Resources resources = mLauncher.getResources();
749
Winson Chung80baf5a2010-08-09 16:03:15 -0700750 // Create a new bitmap to hold the widget preview
Winson Chunge3193b92010-09-10 11:44:42 -0700751 int width = (int) (Math.max(minDim, Math.min(maxDim, info.minWidth)) * sScaleFactor);
752 int height = (int) (Math.max(minDim, Math.min(maxDim, info.minHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700753 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
754 final Drawable background = resources.getDrawable(R.drawable.default_widget_preview);
755 renderDrawableToBitmap(background, bitmap, 0, 0, width, height);
Winson Chung80baf5a2010-08-09 16:03:15 -0700756
Winson Chung45e1d6e2010-11-09 17:19:49 -0800757 // Draw the icon flush left
Winson Chung80baf5a2010-08-09 16:03:15 -0700758 try {
Winson Chung80baf5a2010-08-09 16:03:15 -0700759 Drawable icon = null;
Winson Chunge3193b92010-09-10 11:44:42 -0700760 if (info.icon > 0) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700761 icon = packageManager.getDrawable(packageName, info.icon, null);
Winson Chung5f941722010-09-28 16:36:43 -0700762 }
763 if (icon == null) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700764 icon = resources.getDrawable(R.drawable.ic_launcher_application);
765 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700766
Winson Chunge3193b92010-09-10 11:44:42 -0700767 final int iconSize = minDim / 2;
768 final int offset = iconSize / 4;
Winson Chung45e1d6e2010-11-09 17:19:49 -0800769 renderDrawableToBitmap(icon, null, offset, offset, iconSize, iconSize);
Winson Chung80baf5a2010-08-09 16:03:15 -0700770 } catch (Resources.NotFoundException e) {
771 // if we can't find the icon, then just don't draw it
772 }
773
Winson Chung29d6fea2010-12-01 15:47:31 -0800774 newDrawable = new FastBitmapDrawable(bitmap);
Winson Chung7da10252010-10-28 16:07:04 -0700775 } else {
776 // Scale down the preview if necessary
Winson Chung94ba5b12010-11-08 17:17:47 -0800777 final float imageWidth = drawable.getIntrinsicWidth();
778 final float imageHeight = drawable.getIntrinsicHeight();
779 final float aspect = (float) imageWidth / imageHeight;
780 final int scaledWidth =
781 (int) (Math.max(minDim, Math.min(maxDim, imageWidth)) * sScaleFactor);
782 final int scaledHeight =
783 (int) (Math.max(minDim, Math.min(maxDim, imageHeight)) * sScaleFactor);
Winson Chung7da10252010-10-28 16:07:04 -0700784 int width;
785 int height;
Winson Chung94ba5b12010-11-08 17:17:47 -0800786 if (aspect >= 1.0f) {
Winson Chung7da10252010-10-28 16:07:04 -0700787 width = scaledWidth;
Winson Chung94ba5b12010-11-08 17:17:47 -0800788 height = (int) (((float) scaledWidth / imageWidth) * imageHeight);
Winson Chung7da10252010-10-28 16:07:04 -0700789 } else {
790 height = scaledHeight;
Winson Chung94ba5b12010-11-08 17:17:47 -0800791 width = (int) (((float) scaledHeight / imageHeight) * imageWidth);
Winson Chung7da10252010-10-28 16:07:04 -0700792 }
793
794 final Bitmap bitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
795 renderDrawableToBitmap(drawable, bitmap, 0, 0, width, height);
796
Winson Chung29d6fea2010-12-01 15:47:31 -0800797 newDrawable = new FastBitmapDrawable(bitmap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700798 }
Winson Chung29d6fea2010-12-01 15:47:31 -0800799 newDrawable.setBounds(0, 0, newDrawable.getIntrinsicWidth(),
800 newDrawable.getIntrinsicHeight());
801 return newDrawable;
Winson Chung80baf5a2010-08-09 16:03:15 -0700802 }
803
804 private void setupPage(PagedViewCellLayout layout) {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700805 layout.setCellCount(mCellCountX, mCellCountY);
806 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop, mPageLayoutPaddingRight,
807 mPageLayoutPaddingBottom);
Winson Chungef0066b2010-10-21 11:55:00 -0700808 layout.setGap(mPageLayoutWidthGap, mPageLayoutHeightGap);
Winson Chung80baf5a2010-08-09 16:03:15 -0700809 }
810
Winson Chunge3193b92010-09-10 11:44:42 -0700811 private void setupWorkspaceLayout() {
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700812 mWorkspaceWidgetLayout.setCellCount(mCellCountX, mCellCountY);
Winson Chunge3193b92010-09-10 11:44:42 -0700813 mWorkspaceWidgetLayout.setPadding(20, 10, 20, 0);
814
815 mMaxWidgetWidth = mWorkspaceWidgetLayout.estimateCellWidth(sMaxWidgetCellHSpan);
816 }
817
Winson Chung80baf5a2010-08-09 16:03:15 -0700818 private void syncWidgetPages() {
819 if (mWidgetList == null) return;
820
Winson Chunge3193b92010-09-10 11:44:42 -0700821 // we need to repopulate with the LinearLayout layout for the widget pages
822 removeAllViews();
Winson Chung80baf5a2010-08-09 16:03:15 -0700823 int numPages = relayoutWidgets();
Winson Chunge3193b92010-09-10 11:44:42 -0700824 for (int i = 0; i < numPages; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800825 LinearLayout layout = new PagedViewExtendedLayout(getContext());
Winson Chunge3193b92010-09-10 11:44:42 -0700826 layout.setGravity(Gravity.CENTER_HORIZONTAL);
Winson Chungef0066b2010-10-21 11:55:00 -0700827 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
828 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
Winson Chunge3193b92010-09-10 11:44:42 -0700829
Winson Chunge22a8e92010-11-12 13:40:58 -0800830 addView(layout, new LinearLayout.LayoutParams(
831 LinearLayout.LayoutParams.WRAP_CONTENT,
832 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung80baf5a2010-08-09 16:03:15 -0700833 }
834 }
835
836 private void syncWidgetPageItems(int page) {
837 // ensure that we have the right number of items on the pages
Winson Chunge3193b92010-09-10 11:44:42 -0700838 LinearLayout layout = (LinearLayout) getChildAt(page);
839 final ArrayList<AppWidgetProviderInfo> list = mWidgetPages.get(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700840 final int count = list.size();
Winson Chung04998342011-01-05 13:54:43 -0800841 final int numPages = getPageCount();
Winson Chung80baf5a2010-08-09 16:03:15 -0700842 layout.removeAllViews();
843 for (int i = 0; i < count; ++i) {
Winson Chung68846fd2010-10-29 11:00:27 -0700844 final AppWidgetProviderInfo info = (AppWidgetProviderInfo) list.get(i);
845 final PendingAddWidgetInfo createItemInfo = new PendingAddWidgetInfo(info, null, null);
Winson Chung29d6fea2010-12-01 15:47:31 -0800846 final int[] cellSpans = CellLayout.rectToCell(getResources(), info.minWidth,
847 info.minHeight, null);
848 final FastBitmapDrawable icon = getWidgetPreview(info);
Winson Chungd0d43012010-09-26 17:26:45 -0700849
Winson Chung29d6fea2010-12-01 15:47:31 -0800850 PagedViewWidget l = (PagedViewWidget) mInflater.inflate(
Winson Chunge3193b92010-09-10 11:44:42 -0700851 R.layout.customize_paged_view_widget, layout, false);
Winson Chung04998342011-01-05 13:54:43 -0800852 l.applyFromAppWidgetProviderInfo(info, icon, mMaxWidgetWidth, cellSpans,
853 mPageViewIconCache, (numPages > 1));
Winson Chungd0d43012010-09-26 17:26:45 -0700854 l.setTag(createItemInfo);
855 l.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800856 l.setOnTouchListener(this);
Winson Chunge3193b92010-09-10 11:44:42 -0700857 l.setOnLongClickListener(this);
Winson Chung80baf5a2010-08-09 16:03:15 -0700858
Winson Chunge3193b92010-09-10 11:44:42 -0700859 layout.addView(l);
Winson Chung80baf5a2010-08-09 16:03:15 -0700860 }
861 }
862
Winson Chung45e1d6e2010-11-09 17:19:49 -0800863 private void syncWallpaperPages() {
864 if (mWallpaperList == null) return;
865
866 // We need to repopulate the LinearLayout for the wallpaper pages
867 removeAllViews();
868 int numPages = (int) Math.ceil((float) (mWallpaperList.size() * mWallpaperCellHSpan) /
Winson Chung78bd53c2010-12-09 13:50:24 -0800869 mMaxWallpaperCellHSpan);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800870 for (int i = 0; i < numPages; ++i) {
871 LinearLayout layout = new PagedViewExtendedLayout(getContext());
872 layout.setGravity(Gravity.CENTER_HORIZONTAL);
873 layout.setPadding(mPageLayoutPaddingLeft, mPageLayoutPaddingTop,
874 mPageLayoutPaddingRight, mPageLayoutPaddingBottom);
875
Winson Chunge22a8e92010-11-12 13:40:58 -0800876 addView(layout, new LinearLayout.LayoutParams(
877 LinearLayout.LayoutParams.WRAP_CONTENT,
878 LinearLayout.LayoutParams.MATCH_PARENT));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800879 }
880 }
881
882 private void syncWallpaperPageItems(int page) {
883 // Load the items on to the pages
884 LinearLayout layout = (LinearLayout) getChildAt(page);
885 layout.removeAllViews();
886 final int count = mWallpaperList.size();
Winson Chung04998342011-01-05 13:54:43 -0800887 final int numPages = getPageCount();
Winson Chung78bd53c2010-12-09 13:50:24 -0800888 final int numItemsPerPage = mMaxWallpaperCellHSpan / mWallpaperCellHSpan;
Winson Chungd28ed492010-11-22 14:34:57 -0800889 final int startIndex = page * numItemsPerPage;
890 final int endIndex = Math.min(count, startIndex + numItemsPerPage);
891 for (int i = startIndex; i < endIndex; ++i) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800892 final ResolveInfo info = mWallpaperList.get(i);
Winson Chung29d6fea2010-12-01 15:47:31 -0800893 final FastBitmapDrawable icon = getWallpaperPreview(info);
Winson Chung45e1d6e2010-11-09 17:19:49 -0800894
Winson Chung29d6fea2010-12-01 15:47:31 -0800895 PagedViewWidget l = (PagedViewWidget) mInflater.inflate(
Winson Chung45e1d6e2010-11-09 17:19:49 -0800896 R.layout.customize_paged_view_wallpaper, layout, false);
Winson Chung04998342011-01-05 13:54:43 -0800897 l.applyFromWallpaperInfo(info, mPackageManager, icon, mMaxWidgetWidth,
898 mPageViewIconCache, (numPages > 1));
Winson Chung45e1d6e2010-11-09 17:19:49 -0800899 l.setTag(info);
900 l.setOnClickListener(this);
901
Winson Chung45e1d6e2010-11-09 17:19:49 -0800902 layout.addView(l);
903 }
904 }
905
Winson Chung80baf5a2010-08-09 16:03:15 -0700906 private void syncListPages(List<ResolveInfo> list) {
Winson Chunge3193b92010-09-10 11:44:42 -0700907 // we need to repopulate with PagedViewCellLayouts
908 removeAllViews();
909
Winson Chung80baf5a2010-08-09 16:03:15 -0700910 // ensure that we have the right number of pages
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700911 int numPages = (int) Math.ceil((float) list.size() / (mCellCountX * mCellCountY));
Winson Chunge3193b92010-09-10 11:44:42 -0700912 for (int i = 0; i < numPages; ++i) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700913 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
914 setupPage(layout);
915 addView(layout);
916 }
917 }
918
919 private void syncListPageItems(int page, List<ResolveInfo> list) {
920 // ensure that we have the right number of items on the pages
Winson Chung04998342011-01-05 13:54:43 -0800921 final int numPages = getPageCount();
922 final int numCells = mCellCountX * mCellCountY;
923 final int startIndex = page * numCells;
924 final int endIndex = Math.min(startIndex + numCells, list.size());
925 final PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
Winson Chung80baf5a2010-08-09 16:03:15 -0700926 // TODO: we can optimize by just re-applying to existing views
927 layout.removeAllViews();
928 for (int i = startIndex; i < endIndex; ++i) {
929 ResolveInfo info = list.get(i);
Winson Chungd0d43012010-09-26 17:26:45 -0700930 PendingAddItemInfo createItemInfo = new PendingAddItemInfo();
931
Winson Chung241c3b42010-08-25 16:53:03 -0700932 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
933 R.layout.customize_paged_view_item, layout, false);
Michael Jurkac9a96192010-11-01 11:52:08 -0700934 icon.applyFromResolveInfo(info, mPackageManager, mPageViewIconCache,
Winson Chung04998342011-01-05 13:54:43 -0800935 ((LauncherApplication) mLauncher.getApplication()).getIconCache(),
936 (numPages > 1));
Winson Chungd0d43012010-09-26 17:26:45 -0700937 switch (mCustomizationType) {
938 case WallpaperCustomization:
Winson Chunge8878e32010-09-15 20:37:09 -0700939 icon.setOnClickListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700940 break;
Winson Chungd0d43012010-09-26 17:26:45 -0700941 case ShortcutCustomization:
942 createItemInfo.itemType = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
943 createItemInfo.componentName = new ComponentName(info.activityInfo.packageName,
944 info.activityInfo.name);
945 icon.setTag(createItemInfo);
946 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800947 icon.setOnTouchListener(this);
Winson Chungd0d43012010-09-26 17:26:45 -0700948 icon.setOnLongClickListener(this);
949 break;
950 default:
951 break;
Winson Chunge8878e32010-09-15 20:37:09 -0700952 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700953
954 final int index = i - startIndex;
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700955 final int x = index % mCellCountX;
956 final int y = index / mCellCountX;
957 setupPage(layout);
958 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
959 }
960 }
961
962 private void syncAppPages() {
963 if (mApps == null) return;
964
965 // We need to repopulate with PagedViewCellLayouts
966 removeAllViews();
967
968 // Ensure that we have the right number of pages
969 int numPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
970 for (int i = 0; i < numPages; ++i) {
971 PagedViewCellLayout layout = new PagedViewCellLayout(getContext());
972 setupPage(layout);
973 addView(layout);
974 }
975 }
976
977 private void syncAppPageItems(int page) {
978 if (mApps == null) return;
979
980 // ensure that we have the right number of items on the pages
Winson Chung04998342011-01-05 13:54:43 -0800981 final int numPages = getPageCount();
982 final int numCells = mCellCountX * mCellCountY;
983 final int startIndex = page * numCells;
984 final int endIndex = Math.min(startIndex + numCells, mApps.size());
985 final PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(page);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700986 // TODO: we can optimize by just re-applying to existing views
987 layout.removeAllViews();
988 for (int i = startIndex; i < endIndex; ++i) {
989 final ApplicationInfo info = mApps.get(i);
990 PagedViewIcon icon = (PagedViewIcon) mInflater.inflate(
991 R.layout.all_apps_paged_view_application, layout, false);
Winson Chung04998342011-01-05 13:54:43 -0800992 icon.applyFromApplicationInfo(info, mPageViewIconCache, true, (numPages > 1));
Winson Chungd0d43012010-09-26 17:26:45 -0700993 icon.setOnClickListener(this);
Michael Jurka7426c422010-11-11 15:23:47 -0800994 icon.setOnTouchListener(this);
Winson Chung5ffd8ea2010-09-23 18:40:29 -0700995 icon.setOnLongClickListener(this);
996
997 final int index = i - startIndex;
998 final int x = index % mCellCountX;
999 final int y = index / mCellCountX;
Winson Chunge3193b92010-09-10 11:44:42 -07001000 setupPage(layout);
Winson Chung241c3b42010-08-25 16:53:03 -07001001 layout.addViewToCellLayout(icon, -1, i, new PagedViewCellLayout.LayoutParams(x,y, 1,1));
Winson Chung80baf5a2010-08-09 16:03:15 -07001002 }
1003 }
1004
Winson Chung80baf5a2010-08-09 16:03:15 -07001005 @Override
1006 public void syncPages() {
Winson Chunge3193b92010-09-10 11:44:42 -07001007 boolean centerPagedViewCellLayouts = false;
Winson Chung80baf5a2010-08-09 16:03:15 -07001008 switch (mCustomizationType) {
1009 case WidgetCustomization:
1010 syncWidgetPages();
1011 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001012 case ShortcutCustomization:
1013 syncListPages(mShortcutList);
Winson Chunge3193b92010-09-10 11:44:42 -07001014 centerPagedViewCellLayouts = true;
Winson Chung80baf5a2010-08-09 16:03:15 -07001015 break;
1016 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -08001017 syncWallpaperPages();
Winson Chung80baf5a2010-08-09 16:03:15 -07001018 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -07001019 case ApplicationCustomization:
1020 syncAppPages();
1021 centerPagedViewCellLayouts = false;
1022 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001023 default:
1024 removeAllViews();
Winson Chung86f77532010-08-24 11:08:22 -07001025 setCurrentPage(0);
Winson Chung80baf5a2010-08-09 16:03:15 -07001026 break;
1027 }
1028
1029 // only try and center the page if there is one page
1030 final int childCount = getChildCount();
Winson Chunge3193b92010-09-10 11:44:42 -07001031 if (centerPagedViewCellLayouts) {
1032 if (childCount == 1) {
1033 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(0);
1034 layout.enableCenteredContent(true);
1035 } else {
1036 for (int i = 0; i < childCount; ++i) {
1037 PagedViewCellLayout layout = (PagedViewCellLayout) getChildAt(i);
1038 layout.enableCenteredContent(false);
1039 }
Winson Chung80baf5a2010-08-09 16:03:15 -07001040 }
1041 }
1042
1043 // bound the current page
Winson Chung86f77532010-08-24 11:08:22 -07001044 setCurrentPage(Math.max(0, Math.min(childCount - 1, getCurrentPage())));
Winson Chung80baf5a2010-08-09 16:03:15 -07001045 }
1046
1047 @Override
1048 public void syncPageItems(int page) {
1049 switch (mCustomizationType) {
1050 case WidgetCustomization:
1051 syncWidgetPageItems(page);
1052 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001053 case ShortcutCustomization:
1054 syncListPageItems(page, mShortcutList);
1055 break;
1056 case WallpaperCustomization:
Winson Chung45e1d6e2010-11-09 17:19:49 -08001057 syncWallpaperPageItems(page);
Winson Chung80baf5a2010-08-09 16:03:15 -07001058 break;
Winson Chung5ffd8ea2010-09-23 18:40:29 -07001059 case ApplicationCustomization:
1060 syncAppPageItems(page);
1061 break;
Winson Chung80baf5a2010-08-09 16:03:15 -07001062 }
1063 }
Winson Chunge3193b92010-09-10 11:44:42 -07001064
Winson Chungd0d43012010-09-26 17:26:45 -07001065 @Override
Winson Chunge3193b92010-09-10 11:44:42 -07001066 protected int getAssociatedLowerPageBound(int page) {
1067 return 0;
1068 }
Winson Chungd0d43012010-09-26 17:26:45 -07001069 @Override
Winson Chunge3193b92010-09-10 11:44:42 -07001070 protected int getAssociatedUpperPageBound(int page) {
1071 return getChildCount();
1072 }
Winson Chungd0d43012010-09-26 17:26:45 -07001073
1074 @Override
1075 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
Michael Jurka3125d9d2010-09-27 11:30:20 -07001076 mode.setTitle(mChoiceModeTitleText);
Winson Chungd0d43012010-09-26 17:26:45 -07001077 return true;
1078 }
1079
1080 @Override
1081 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
1082 return true;
1083 }
1084
1085 @Override
1086 public void onDestroyActionMode(ActionMode mode) {
1087 endChoiceMode();
1088 }
1089
1090 @Override
1091 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
1092 return false;
1093 }
Winson Chung80baf5a2010-08-09 16:03:15 -07001094}