Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 1 | /* |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 2 | * Copyright (C) 2011 The Android Open Source Project |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 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 | |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 17 | package com.android.systemui.recent; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 18 | |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 19 | import android.animation.Animator; |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 20 | import android.animation.LayoutTransition; |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 21 | import android.animation.TimeInterpolator; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 22 | import android.app.ActivityManager; |
Michael Jurka | 56a5783 | 2012-05-14 13:24:43 -0700 | [diff] [blame] | 23 | import android.app.ActivityManagerNative; |
Dianne Hackborn | 8078d8c | 2012-03-20 11:11:26 -0700 | [diff] [blame] | 24 | import android.app.ActivityOptions; |
Adam Powell | 0fc5b2b | 2012-07-18 18:20:29 -0700 | [diff] [blame] | 25 | import android.app.TaskStackBuilder; |
Michael Jurka | 4e85f46 | 2013-09-16 19:52:21 +0200 | [diff] [blame] | 26 | import android.content.ActivityNotFoundException; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 27 | import android.content.Context; |
| 28 | import android.content.Intent; |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 29 | import android.content.res.Configuration; |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 30 | import android.content.res.Resources; |
Daniel Sandler | 4a066c5 | 2012-04-20 14:49:13 -0400 | [diff] [blame] | 31 | import android.content.res.TypedArray; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 32 | import android.graphics.Bitmap; |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 33 | import android.graphics.Canvas; |
Jim Miller | fefef31 | 2010-11-09 14:08:39 -0800 | [diff] [blame] | 34 | import android.graphics.Matrix; |
Jim Miller | e5c16ab | 2010-12-03 19:18:38 -0800 | [diff] [blame] | 35 | import android.graphics.Shader.TileMode; |
| 36 | import android.graphics.drawable.BitmapDrawable; |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 37 | import android.graphics.drawable.Drawable; |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 38 | import android.net.Uri; |
Michael Jurka | 482f159 | 2012-09-13 11:05:59 -0700 | [diff] [blame] | 39 | import android.os.Bundle; |
Michael Jurka | 56a5783 | 2012-05-14 13:24:43 -0700 | [diff] [blame] | 40 | import android.os.RemoteException; |
Dianne Hackborn | f02b60a | 2012-08-16 10:48:27 -0700 | [diff] [blame] | 41 | import android.os.UserHandle; |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 42 | import android.provider.Settings; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 43 | import android.util.AttributeSet; |
| 44 | import android.util.Log; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 45 | import android.view.LayoutInflater; |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 46 | import android.view.MenuItem; |
Svetoslav Ganov | 6179ea3 | 2011-06-28 01:12:41 -0700 | [diff] [blame] | 47 | import android.view.MotionEvent; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 48 | import android.view.View; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 49 | import android.view.ViewGroup; |
Michael Jurka | e0523f7 | 2013-04-08 15:44:00 -0700 | [diff] [blame] | 50 | import android.view.ViewPropertyAnimator; |
Michael Jurka | f42d9010 | 2013-05-08 18:00:04 +0200 | [diff] [blame] | 51 | import android.view.ViewRootImpl; |
Jim Miller | 1737776 | 2011-10-11 15:33:34 -0700 | [diff] [blame] | 52 | import android.view.accessibility.AccessibilityEvent; |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 53 | import android.view.animation.AnimationUtils; |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 54 | import android.view.animation.DecelerateInterpolator; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 55 | import android.widget.AdapterView; |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 56 | import android.widget.AdapterView.OnItemClickListener; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 57 | import android.widget.BaseAdapter; |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 58 | import android.widget.FrameLayout; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 59 | import android.widget.ImageView; |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 60 | import android.widget.ImageView.ScaleType; |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 61 | import android.widget.PopupMenu; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 62 | import android.widget.TextView; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 63 | |
| 64 | import com.android.systemui.R; |
Daniel Sandler | c6d29fc | 2012-02-25 00:33:12 -0500 | [diff] [blame] | 65 | import com.android.systemui.statusbar.BaseStatusBar; |
John Spurlock | b0e49fc | 2013-06-12 15:50:50 -0400 | [diff] [blame] | 66 | import com.android.systemui.statusbar.StatusBarPanel; |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 67 | import com.android.systemui.statusbar.phone.PhoneStatusBar; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 68 | |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 69 | import java.util.ArrayList; |
| 70 | |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 71 | public class RecentsPanelView extends FrameLayout implements OnItemClickListener, RecentsCallback, |
Michael Jurka | 80343f6 | 2012-10-18 13:13:46 +0200 | [diff] [blame] | 72 | StatusBarPanel, Animator.AnimatorListener { |
Michael Jurka | 3cd0a59 | 2011-08-16 12:40:30 -0700 | [diff] [blame] | 73 | static final String TAG = "RecentsPanelView"; |
John Spurlock | b0e49fc | 2013-06-12 15:50:50 -0400 | [diff] [blame] | 74 | static final boolean DEBUG = PhoneStatusBar.DEBUG || false; |
Michael Jurka | cb46643 | 2012-04-03 05:22:45 -0700 | [diff] [blame] | 75 | private PopupMenu mPopup; |
Jim Miller | 85babff | 2011-01-11 14:26:03 -0800 | [diff] [blame] | 76 | private View mRecentsScrim; |
Michael Jurka | 6d66708 | 2011-09-16 17:04:40 -0700 | [diff] [blame] | 77 | private View mRecentsNoApps; |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 78 | private RecentsScrollView mRecentsContainer; |
Peter Ng | 622a976 | 2011-08-29 10:56:53 -0700 | [diff] [blame] | 79 | |
Jim Miller | 85babff | 2011-01-11 14:26:03 -0800 | [diff] [blame] | 80 | private boolean mShowing; |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 81 | private boolean mWaitingToShow; |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 82 | private ViewHolder mItemToAnimateInWhenWindowAnimationIsFinished; |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 83 | private boolean mAnimateIconOfFirstTask; |
Michael Jurka | 80343f6 | 2012-10-18 13:13:46 +0200 | [diff] [blame] | 84 | private boolean mWaitingForWindowAnimation; |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 85 | private long mWindowAnimationStartTime; |
Michael Jurka | 0e7757b | 2013-03-04 16:18:51 +0100 | [diff] [blame] | 86 | private boolean mCallUiHiddenBeforeNextReload; |
Michael Jurka | 21385cd | 2012-05-03 10:57:31 -0700 | [diff] [blame] | 87 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 88 | private RecentTasksLoader mRecentTasksLoader; |
| 89 | private ArrayList<TaskDescription> mRecentTaskDescriptions; |
| 90 | private TaskDescriptionAdapter mListAdapter; |
| 91 | private int mThumbnailWidth; |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 92 | private boolean mFitThumbnailToXY; |
Daniel Sandler | 4a066c5 | 2012-04-20 14:49:13 -0400 | [diff] [blame] | 93 | private int mRecentItemLayoutId; |
Michael Jurka | c016aaa | 2012-06-05 17:22:24 -0700 | [diff] [blame] | 94 | private boolean mHighEndGfx; |
Dianne Hackborn | eeb1dca | 2011-09-08 13:30:11 -0700 | [diff] [blame] | 95 | |
Michael Jurka | 4eaa983 | 2012-02-29 15:51:49 -0800 | [diff] [blame] | 96 | public static interface RecentsScrollView { |
| 97 | public int numItemsInOneScreenful(); |
| 98 | public void setAdapter(TaskDescriptionAdapter adapter); |
| 99 | public void setCallback(RecentsCallback callback); |
| 100 | public void setMinSwipeAlpha(float minAlpha); |
Michael Jurka | e592363 | 2012-10-03 15:29:36 +0200 | [diff] [blame] | 101 | public View findViewForTask(int persistentTaskId); |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 102 | public void drawFadedEdges(Canvas c, int left, int right, int top, int bottom); |
| 103 | public void setOnScrollListener(Runnable listener); |
Michael Jurka | 4eaa983 | 2012-02-29 15:51:49 -0800 | [diff] [blame] | 104 | } |
| 105 | |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 106 | private final class OnLongClickDelegate implements View.OnLongClickListener { |
| 107 | View mOtherView; |
| 108 | OnLongClickDelegate(View other) { |
| 109 | mOtherView = other; |
| 110 | } |
| 111 | public boolean onLongClick(View v) { |
| 112 | return mOtherView.performLongClick(); |
| 113 | } |
| 114 | } |
| 115 | |
Jim Miller | b5a2b29 | 2011-03-01 16:14:59 -0800 | [diff] [blame] | 116 | /* package */ final static class ViewHolder { |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 117 | View thumbnailView; |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 118 | ImageView thumbnailViewImage; |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 119 | Drawable thumbnailViewDrawable; |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 120 | ImageView iconView; |
| 121 | TextView labelView; |
| 122 | TextView descriptionView; |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 123 | View calloutLine; |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 124 | TaskDescription taskDescription; |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 125 | boolean loadedThumbnailAndIcon; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 126 | } |
| 127 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 128 | /* package */ final class TaskDescriptionAdapter extends BaseAdapter { |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 129 | private LayoutInflater mInflater; |
| 130 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 131 | public TaskDescriptionAdapter(Context context) { |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 132 | mInflater = LayoutInflater.from(context); |
| 133 | } |
| 134 | |
| 135 | public int getCount() { |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 136 | return mRecentTaskDescriptions != null ? mRecentTaskDescriptions.size() : 0; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | public Object getItem(int position) { |
| 140 | return position; // we only need the index |
| 141 | } |
| 142 | |
| 143 | public long getItemId(int position) { |
| 144 | return position; // we just need something unique for this position |
| 145 | } |
| 146 | |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 147 | public View createView(ViewGroup parent) { |
Daniel Sandler | 4a066c5 | 2012-04-20 14:49:13 -0400 | [diff] [blame] | 148 | View convertView = mInflater.inflate(mRecentItemLayoutId, parent, false); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 149 | ViewHolder holder = new ViewHolder(); |
| 150 | holder.thumbnailView = convertView.findViewById(R.id.app_thumbnail); |
| 151 | holder.thumbnailViewImage = |
| 152 | (ImageView) convertView.findViewById(R.id.app_thumbnail_image); |
| 153 | // If we set the default thumbnail now, we avoid an onLayout when we update |
| 154 | // the thumbnail later (if they both have the same dimensions) |
Michael Jurka | 80343f6 | 2012-10-18 13:13:46 +0200 | [diff] [blame] | 155 | updateThumbnail(holder, mRecentTasksLoader.getDefaultThumbnail(), false, false); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 156 | holder.iconView = (ImageView) convertView.findViewById(R.id.app_icon); |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 157 | holder.iconView.setImageDrawable(mRecentTasksLoader.getDefaultIcon()); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 158 | holder.labelView = (TextView) convertView.findViewById(R.id.app_label); |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 159 | holder.calloutLine = convertView.findViewById(R.id.recents_callout_line); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 160 | holder.descriptionView = (TextView) convertView.findViewById(R.id.app_description); |
| 161 | |
| 162 | convertView.setTag(holder); |
| 163 | return convertView; |
| 164 | } |
| 165 | |
| 166 | public View getView(int position, View convertView, ViewGroup parent) { |
| 167 | if (convertView == null) { |
| 168 | convertView = createView(parent); |
| 169 | } |
Michael Jurka | 12cdec9 | 2013-02-07 17:51:09 +0100 | [diff] [blame] | 170 | final ViewHolder holder = (ViewHolder) convertView.getTag(); |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 171 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 172 | // index is reverse since most recent appears at the bottom... |
| 173 | final int index = mRecentTaskDescriptions.size() - position - 1; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 174 | |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 175 | final TaskDescription td = mRecentTaskDescriptions.get(index); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 176 | |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 177 | holder.labelView.setText(td.getLabel()); |
| 178 | holder.thumbnailView.setContentDescription(td.getLabel()); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 179 | holder.loadedThumbnailAndIcon = td.isLoaded(); |
| 180 | if (td.isLoaded()) { |
| 181 | updateThumbnail(holder, td.getThumbnail(), true, false); |
| 182 | updateIcon(holder, td.getIcon(), true, false); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 183 | } |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 184 | if (index == 0) { |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 185 | if (mAnimateIconOfFirstTask) { |
Michael Jurka | 0e7757b | 2013-03-04 16:18:51 +0100 | [diff] [blame] | 186 | ViewHolder oldHolder = mItemToAnimateInWhenWindowAnimationIsFinished; |
| 187 | if (oldHolder != null) { |
| 188 | oldHolder.iconView.setAlpha(1f); |
| 189 | oldHolder.iconView.setTranslationX(0f); |
| 190 | oldHolder.iconView.setTranslationY(0f); |
| 191 | oldHolder.labelView.setAlpha(1f); |
| 192 | oldHolder.labelView.setTranslationX(0f); |
| 193 | oldHolder.labelView.setTranslationY(0f); |
| 194 | if (oldHolder.calloutLine != null) { |
| 195 | oldHolder.calloutLine.setAlpha(1f); |
| 196 | oldHolder.calloutLine.setTranslationX(0f); |
| 197 | oldHolder.calloutLine.setTranslationY(0f); |
Michael Jurka | a924076 | 2012-10-17 13:02:55 +0200 | [diff] [blame] | 198 | } |
| 199 | } |
Michael Jurka | e0523f7 | 2013-04-08 15:44:00 -0700 | [diff] [blame] | 200 | mItemToAnimateInWhenWindowAnimationIsFinished = holder; |
| 201 | int translation = -getResources().getDimensionPixelSize( |
| 202 | R.dimen.status_bar_recents_app_icon_translate_distance); |
| 203 | final Configuration config = getResources().getConfiguration(); |
| 204 | if (config.orientation == Configuration.ORIENTATION_PORTRAIT) { |
| 205 | if (getLayoutDirection() == View.LAYOUT_DIRECTION_RTL) { |
| 206 | translation = -translation; |
Michael Jurka | 12cdec9 | 2013-02-07 17:51:09 +0100 | [diff] [blame] | 207 | } |
Michael Jurka | e0523f7 | 2013-04-08 15:44:00 -0700 | [diff] [blame] | 208 | holder.iconView.setAlpha(0f); |
| 209 | holder.iconView.setTranslationX(translation); |
| 210 | holder.labelView.setAlpha(0f); |
| 211 | holder.labelView.setTranslationX(translation); |
| 212 | holder.calloutLine.setAlpha(0f); |
| 213 | holder.calloutLine.setTranslationX(translation); |
| 214 | } else { |
| 215 | holder.iconView.setAlpha(0f); |
| 216 | holder.iconView.setTranslationY(translation); |
| 217 | } |
| 218 | if (!mWaitingForWindowAnimation) { |
| 219 | animateInIconOfFirstTask(); |
| 220 | } |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 221 | } |
| 222 | } |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 223 | |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 224 | holder.thumbnailView.setTag(td); |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 225 | holder.thumbnailView.setOnLongClickListener(new OnLongClickDelegate(convertView)); |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 226 | holder.taskDescription = td; |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 227 | return convertView; |
| 228 | } |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 229 | |
| 230 | public void recycleView(View v) { |
| 231 | ViewHolder holder = (ViewHolder) v.getTag(); |
| 232 | updateThumbnail(holder, mRecentTasksLoader.getDefaultThumbnail(), false, false); |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 233 | holder.iconView.setImageDrawable(mRecentTasksLoader.getDefaultIcon()); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 234 | holder.iconView.setVisibility(INVISIBLE); |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 235 | holder.iconView.animate().cancel(); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 236 | holder.labelView.setText(null); |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 237 | holder.labelView.animate().cancel(); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 238 | holder.thumbnailView.setContentDescription(null); |
| 239 | holder.thumbnailView.setTag(null); |
| 240 | holder.thumbnailView.setOnLongClickListener(null); |
| 241 | holder.thumbnailView.setVisibility(INVISIBLE); |
Michael Jurka | fe09ad8 | 2012-10-22 13:58:38 -0700 | [diff] [blame] | 242 | holder.iconView.setAlpha(1f); |
| 243 | holder.iconView.setTranslationX(0f); |
| 244 | holder.iconView.setTranslationY(0f); |
| 245 | holder.labelView.setAlpha(1f); |
| 246 | holder.labelView.setTranslationX(0f); |
| 247 | holder.labelView.setTranslationY(0f); |
| 248 | if (holder.calloutLine != null) { |
| 249 | holder.calloutLine.setAlpha(1f); |
| 250 | holder.calloutLine.setTranslationX(0f); |
| 251 | holder.calloutLine.setTranslationY(0f); |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 252 | holder.calloutLine.animate().cancel(); |
Michael Jurka | fe09ad8 | 2012-10-22 13:58:38 -0700 | [diff] [blame] | 253 | } |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 254 | holder.taskDescription = null; |
| 255 | holder.loadedThumbnailAndIcon = false; |
| 256 | } |
| 257 | } |
| 258 | |
Michael Jurka | 8b2e37e | 2012-05-08 20:06:13 -0700 | [diff] [blame] | 259 | public RecentsPanelView(Context context, AttributeSet attrs) { |
| 260 | this(context, attrs, 0); |
| 261 | } |
| 262 | |
| 263 | public RecentsPanelView(Context context, AttributeSet attrs, int defStyle) { |
| 264 | super(context, attrs, defStyle); |
Michael Jurka | 8b2e37e | 2012-05-08 20:06:13 -0700 | [diff] [blame] | 265 | updateValuesFromResources(); |
| 266 | |
| 267 | TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.RecentsPanelView, |
| 268 | defStyle, 0); |
| 269 | |
| 270 | mRecentItemLayoutId = a.getResourceId(R.styleable.RecentsPanelView_recentItemLayout, 0); |
Michael Jurka | 80343f6 | 2012-10-18 13:13:46 +0200 | [diff] [blame] | 271 | mRecentTasksLoader = RecentTasksLoader.getInstance(context); |
Michael Jurka | 8b2e37e | 2012-05-08 20:06:13 -0700 | [diff] [blame] | 272 | a.recycle(); |
| 273 | } |
| 274 | |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 275 | public int numItemsInOneScreenful() { |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 276 | return mRecentsContainer.numItemsInOneScreenful(); |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 277 | } |
| 278 | |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 279 | private boolean pointInside(int x, int y, View v) { |
| 280 | final int l = v.getLeft(); |
| 281 | final int r = v.getRight(); |
| 282 | final int t = v.getTop(); |
| 283 | final int b = v.getBottom(); |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 284 | return x >= l && x < r && y >= t && y < b; |
| 285 | } |
| 286 | |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 287 | public boolean isInContentArea(int x, int y) { |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 288 | return pointInside(x, y, (View) mRecentsContainer); |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 289 | } |
| 290 | |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 291 | public void show(boolean show) { |
Michael Jurka | 80343f6 | 2012-10-18 13:13:46 +0200 | [diff] [blame] | 292 | show(show, null, false, false); |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | public void show(boolean show, ArrayList<TaskDescription> recentTaskDescriptions, |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 296 | boolean firstScreenful, boolean animateIconOfFirstTask) { |
Michael Jurka | 0e7757b | 2013-03-04 16:18:51 +0100 | [diff] [blame] | 297 | if (show && mCallUiHiddenBeforeNextReload) { |
| 298 | onUiHidden(); |
| 299 | recentTaskDescriptions = null; |
| 300 | mAnimateIconOfFirstTask = false; |
| 301 | mWaitingForWindowAnimation = false; |
| 302 | } else { |
| 303 | mAnimateIconOfFirstTask = animateIconOfFirstTask; |
| 304 | mWaitingForWindowAnimation = animateIconOfFirstTask; |
| 305 | } |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 306 | if (show) { |
| 307 | mWaitingToShow = true; |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 308 | refreshRecentTasksList(recentTaskDescriptions, firstScreenful); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 309 | showIfReady(); |
| 310 | } else { |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 311 | showImpl(false); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
| 315 | private void showIfReady() { |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 316 | // mWaitingToShow => there was a touch up on the recents button |
| 317 | // mRecentTaskDescriptions != null => we've created views for the first screenful of items |
| 318 | if (mWaitingToShow && mRecentTaskDescriptions != null) { |
| 319 | showImpl(true); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 320 | } |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Michael Jurka | 56a5783 | 2012-05-14 13:24:43 -0700 | [diff] [blame] | 323 | static void sendCloseSystemWindows(Context context, String reason) { |
| 324 | if (ActivityManagerNative.isSystemReady()) { |
| 325 | try { |
| 326 | ActivityManagerNative.getDefault().closeSystemDialogs(reason); |
| 327 | } catch (RemoteException e) { |
| 328 | } |
| 329 | } |
| 330 | } |
| 331 | |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 332 | private void showImpl(boolean show) { |
Michael Jurka | 56a5783 | 2012-05-14 13:24:43 -0700 | [diff] [blame] | 333 | sendCloseSystemWindows(mContext, BaseStatusBar.SYSTEM_DIALOG_REASON_RECENT_APPS); |
| 334 | |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 335 | mShowing = show; |
| 336 | |
Michael Jurka | 7daf95d | 2011-09-30 11:07:30 -0700 | [diff] [blame] | 337 | if (show) { |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 338 | // if there are no apps, bring up a "No recent apps" message |
| 339 | boolean noApps = mRecentTaskDescriptions != null |
| 340 | && (mRecentTaskDescriptions.size() == 0); |
| 341 | mRecentsNoApps.setAlpha(1f); |
| 342 | mRecentsNoApps.setVisibility(noApps ? View.VISIBLE : View.INVISIBLE); |
Michael Jurka | 7daf95d | 2011-09-30 11:07:30 -0700 | [diff] [blame] | 343 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 344 | onAnimationEnd(null); |
Michael Jurka | e9166ed | 2011-07-27 18:23:18 -0700 | [diff] [blame] | 345 | setFocusable(true); |
| 346 | setFocusableInTouchMode(true); |
| 347 | requestFocus(); |
Michael Jurka | cb46643 | 2012-04-03 05:22:45 -0700 | [diff] [blame] | 348 | } else { |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 349 | mWaitingToShow = false; |
| 350 | // call onAnimationEnd() and clearRecentTasksList() in onUiHidden() |
Michael Jurka | 0e7757b | 2013-03-04 16:18:51 +0100 | [diff] [blame] | 351 | mCallUiHiddenBeforeNextReload = true; |
Michael Jurka | cb46643 | 2012-04-03 05:22:45 -0700 | [diff] [blame] | 352 | if (mPopup != null) { |
| 353 | mPopup.dismiss(); |
| 354 | } |
Michael Jurka | e9166ed | 2011-07-27 18:23:18 -0700 | [diff] [blame] | 355 | } |
Jim Miller | 85babff | 2011-01-11 14:26:03 -0800 | [diff] [blame] | 356 | } |
| 357 | |
Michael Jurka | f42d9010 | 2013-05-08 18:00:04 +0200 | [diff] [blame] | 358 | protected void onAttachedToWindow () { |
| 359 | super.onAttachedToWindow(); |
| 360 | final ViewRootImpl root = getViewRootImpl(); |
| 361 | if (root != null) { |
| 362 | root.setDrawDuringWindowsAnimating(true); |
| 363 | } |
| 364 | } |
| 365 | |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 366 | public void onUiHidden() { |
Michael Jurka | 0e7757b | 2013-03-04 16:18:51 +0100 | [diff] [blame] | 367 | mCallUiHiddenBeforeNextReload = false; |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 368 | if (!mShowing && mRecentTaskDescriptions != null) { |
| 369 | onAnimationEnd(null); |
| 370 | clearRecentTasksList(); |
| 371 | } |
Michael Jurka | c6461ca | 2011-09-02 12:12:15 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 374 | public void dismiss() { |
| 375 | ((RecentsActivity) mContext).dismissAndGoHome(); |
| 376 | } |
| 377 | |
| 378 | public void dismissAndGoBack() { |
| 379 | ((RecentsActivity) mContext).dismissAndGoBack(); |
Michael Jurka | 8b09866 | 2011-09-01 17:00:53 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 382 | public void onAnimationCancel(Animator animation) { |
| 383 | } |
| 384 | |
| 385 | public void onAnimationEnd(Animator animation) { |
| 386 | if (mShowing) { |
| 387 | final LayoutTransition transitioner = new LayoutTransition(); |
| 388 | ((ViewGroup)mRecentsContainer).setLayoutTransition(transitioner); |
| 389 | createCustomAnimations(transitioner); |
| 390 | } else { |
| 391 | ((ViewGroup)mRecentsContainer).setLayoutTransition(null); |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | public void onAnimationRepeat(Animator animation) { |
| 396 | } |
| 397 | |
| 398 | public void onAnimationStart(Animator animation) { |
| 399 | } |
| 400 | |
Svetoslav Ganov | 6179ea3 | 2011-06-28 01:12:41 -0700 | [diff] [blame] | 401 | @Override |
| 402 | public boolean dispatchHoverEvent(MotionEvent event) { |
| 403 | // Ignore hover events outside of this panel bounds since such events |
| 404 | // generate spurious accessibility events with the panel content when |
| 405 | // tapping outside of it, thus confusing the user. |
| 406 | final int x = (int) event.getX(); |
| 407 | final int y = (int) event.getY(); |
| 408 | if (x >= 0 && x < getWidth() && y >= 0 && y < getHeight()) { |
| 409 | return super.dispatchHoverEvent(event); |
| 410 | } |
| 411 | return true; |
| 412 | } |
| 413 | |
Jim Miller | 85babff | 2011-01-11 14:26:03 -0800 | [diff] [blame] | 414 | /** |
| 415 | * Whether the panel is showing, or, if it's animating, whether it will be |
| 416 | * when the animation is done. |
| 417 | */ |
| 418 | public boolean isShowing() { |
| 419 | return mShowing; |
| 420 | } |
| 421 | |
Daniel Sandler | 328310c | 2011-09-23 15:56:52 -0400 | [diff] [blame] | 422 | public void setRecentTasksLoader(RecentTasksLoader loader) { |
| 423 | mRecentTasksLoader = loader; |
| 424 | } |
| 425 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 426 | public void updateValuesFromResources() { |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 427 | final Resources res = mContext.getResources(); |
| 428 | mThumbnailWidth = Math.round(res.getDimension(R.dimen.status_bar_recents_thumbnail_width)); |
| 429 | mFitThumbnailToXY = res.getBoolean(R.bool.config_recents_thumbnail_image_fits_to_xy); |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | @Override |
| 433 | protected void onFinishInflate() { |
| 434 | super.onFinishInflate(); |
Daniel Sandler | 4a066c5 | 2012-04-20 14:49:13 -0400 | [diff] [blame] | 435 | |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 436 | mRecentsContainer = (RecentsScrollView) findViewById(R.id.recents_container); |
| 437 | mRecentsContainer.setOnScrollListener(new Runnable() { |
| 438 | public void run() { |
| 439 | // need to redraw the faded edges |
| 440 | invalidate(); |
| 441 | } |
| 442 | }); |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 443 | mListAdapter = new TaskDescriptionAdapter(mContext); |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 444 | mRecentsContainer.setAdapter(mListAdapter); |
| 445 | mRecentsContainer.setCallback(this); |
Jim Miller | 5fda69c | 2011-02-16 15:17:11 -0800 | [diff] [blame] | 446 | |
Michael Jurka | 6d66708 | 2011-09-16 17:04:40 -0700 | [diff] [blame] | 447 | mRecentsScrim = findViewById(R.id.recents_bg_protect); |
| 448 | mRecentsNoApps = findViewById(R.id.recents_no_apps); |
Jim Miller | e5c16ab | 2010-12-03 19:18:38 -0800 | [diff] [blame] | 449 | |
Michael Jurka | f16fc51 | 2012-02-27 15:02:23 -0800 | [diff] [blame] | 450 | if (mRecentsScrim != null) { |
Jeff Brown | 98365d7 | 2012-08-19 20:30:52 -0700 | [diff] [blame] | 451 | mHighEndGfx = ActivityManager.isHighEndGfx(); |
Michael Jurka | c016aaa | 2012-06-05 17:22:24 -0700 | [diff] [blame] | 452 | if (!mHighEndGfx) { |
Michael Jurka | d5895a7 | 2012-05-12 13:24:58 -0700 | [diff] [blame] | 453 | mRecentsScrim.setBackground(null); |
Michael Jurka | f16fc51 | 2012-02-27 15:02:23 -0800 | [diff] [blame] | 454 | } else if (mRecentsScrim.getBackground() instanceof BitmapDrawable) { |
| 455 | // In order to save space, we make the background texture repeat in the Y direction |
| 456 | ((BitmapDrawable) mRecentsScrim.getBackground()).setTileModeY(TileMode.REPEAT); |
| 457 | } |
Jim Miller | e5c16ab | 2010-12-03 19:18:38 -0800 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | |
Michael Jurka | 4eaa983 | 2012-02-29 15:51:49 -0800 | [diff] [blame] | 461 | public void setMinSwipeAlpha(float minAlpha) { |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 462 | mRecentsContainer.setMinSwipeAlpha(minAlpha); |
Michael Jurka | 4eaa983 | 2012-02-29 15:51:49 -0800 | [diff] [blame] | 463 | } |
| 464 | |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 465 | private void createCustomAnimations(LayoutTransition transitioner) { |
Chet Haase | 212f625 | 2011-08-12 09:19:10 -0700 | [diff] [blame] | 466 | transitioner.setDuration(200); |
| 467 | transitioner.setStartDelay(LayoutTransition.CHANGE_DISAPPEARING, 0); |
| 468 | transitioner.setAnimator(LayoutTransition.DISAPPEARING, null); |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 469 | } |
| 470 | |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 471 | private void updateIcon(ViewHolder h, Drawable icon, boolean show, boolean anim) { |
| 472 | if (icon != null) { |
| 473 | h.iconView.setImageDrawable(icon); |
| 474 | if (show && h.iconView.getVisibility() != View.VISIBLE) { |
| 475 | if (anim) { |
| 476 | h.iconView.setAnimation( |
| 477 | AnimationUtils.loadAnimation(mContext, R.anim.recent_appear)); |
| 478 | } |
| 479 | h.iconView.setVisibility(View.VISIBLE); |
| 480 | } |
| 481 | } |
| 482 | } |
| 483 | |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 484 | private void updateThumbnail(ViewHolder h, Drawable thumbnail, boolean show, boolean anim) { |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 485 | if (thumbnail != null) { |
| 486 | // Should remove the default image in the frame |
| 487 | // that this now covers, to improve scrolling speed. |
| 488 | // That can't be done until the anim is complete though. |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 489 | h.thumbnailViewImage.setImageDrawable(thumbnail); |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 490 | |
| 491 | // scale the image to fill the full width of the ImageView. do this only if |
| 492 | // we haven't set a bitmap before, or if the bitmap size has changed |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 493 | if (h.thumbnailViewDrawable == null || |
| 494 | h.thumbnailViewDrawable.getIntrinsicWidth() != thumbnail.getIntrinsicWidth() || |
| 495 | h.thumbnailViewDrawable.getIntrinsicHeight() != thumbnail.getIntrinsicHeight()) { |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 496 | if (mFitThumbnailToXY) { |
| 497 | h.thumbnailViewImage.setScaleType(ScaleType.FIT_XY); |
| 498 | } else { |
| 499 | Matrix scaleMatrix = new Matrix(); |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 500 | float scale = mThumbnailWidth / (float) thumbnail.getIntrinsicWidth(); |
Michael Jurka | bfd24ac | 2011-11-13 13:50:38 -0800 | [diff] [blame] | 501 | scaleMatrix.setScale(scale, scale); |
| 502 | h.thumbnailViewImage.setScaleType(ScaleType.MATRIX); |
| 503 | h.thumbnailViewImage.setImageMatrix(scaleMatrix); |
| 504 | } |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 505 | } |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 506 | if (show && h.thumbnailView.getVisibility() != View.VISIBLE) { |
| 507 | if (anim) { |
| 508 | h.thumbnailView.setAnimation( |
| 509 | AnimationUtils.loadAnimation(mContext, R.anim.recent_appear)); |
| 510 | } |
| 511 | h.thumbnailView.setVisibility(View.VISIBLE); |
| 512 | } |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 513 | h.thumbnailViewDrawable = thumbnail; |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 514 | } |
Jim Miller | fefef31 | 2010-11-09 14:08:39 -0800 | [diff] [blame] | 515 | } |
| 516 | |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 517 | void onTaskThumbnailLoaded(TaskDescription td) { |
| 518 | synchronized (td) { |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 519 | if (mRecentsContainer != null) { |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 520 | ViewGroup container = (ViewGroup) mRecentsContainer; |
Michael Jurka | 4eaa983 | 2012-02-29 15:51:49 -0800 | [diff] [blame] | 521 | if (container instanceof RecentsScrollView) { |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 522 | container = (ViewGroup) container.findViewById( |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 523 | R.id.recents_linear_layout); |
| 524 | } |
| 525 | // Look for a view showing this thumbnail, to update. |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 526 | for (int i=0; i < container.getChildCount(); i++) { |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 527 | View v = container.getChildAt(i); |
| 528 | if (v.getTag() instanceof ViewHolder) { |
| 529 | ViewHolder h = (ViewHolder)v.getTag(); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 530 | if (!h.loadedThumbnailAndIcon && h.taskDescription == td) { |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 531 | // only fade in the thumbnail if recents is already visible-- we |
| 532 | // show it immediately otherwise |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 533 | //boolean animateShow = mShowing && |
| 534 | // mRecentsContainer.getAlpha() > ViewConfiguration.ALPHA_THRESHOLD; |
| 535 | boolean animateShow = false; |
| 536 | updateIcon(h, td.getIcon(), true, animateShow); |
| 537 | updateThumbnail(h, td.getThumbnail(), true, animateShow); |
| 538 | h.loadedThumbnailAndIcon = true; |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 539 | } |
| 540 | } |
| 541 | } |
| 542 | } |
Craig Mautner | ca6da00 | 2012-09-20 14:54:37 -0700 | [diff] [blame] | 543 | } |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 544 | showIfReady(); |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 545 | } |
| 546 | |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 547 | private void animateInIconOfFirstTask() { |
| 548 | if (mItemToAnimateInWhenWindowAnimationIsFinished != null && |
| 549 | !mRecentTasksLoader.isFirstScreenful()) { |
| 550 | int timeSinceWindowAnimation = |
| 551 | (int) (System.currentTimeMillis() - mWindowAnimationStartTime); |
Michael Jurka | f42d9010 | 2013-05-08 18:00:04 +0200 | [diff] [blame] | 552 | final int minStartDelay = 150; |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 553 | final int startDelay = Math.max(0, Math.min( |
| 554 | minStartDelay - timeSinceWindowAnimation, minStartDelay)); |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 555 | final int duration = 250; |
| 556 | final ViewHolder holder = mItemToAnimateInWhenWindowAnimationIsFinished; |
| 557 | final TimeInterpolator cubic = new DecelerateInterpolator(1.5f); |
Michael Jurka | e0523f7 | 2013-04-08 15:44:00 -0700 | [diff] [blame] | 558 | FirstFrameAnimatorHelper.initializeDrawListener(holder.iconView); |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 559 | for (View v : |
| 560 | new View[] { holder.iconView, holder.labelView, holder.calloutLine }) { |
| 561 | if (v != null) { |
Michael Jurka | e0523f7 | 2013-04-08 15:44:00 -0700 | [diff] [blame] | 562 | ViewPropertyAnimator vpa = v.animate().translationX(0).translationY(0) |
| 563 | .alpha(1f).setStartDelay(startDelay) |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 564 | .setDuration(duration).setInterpolator(cubic); |
Michael Jurka | e0523f7 | 2013-04-08 15:44:00 -0700 | [diff] [blame] | 565 | FirstFrameAnimatorHelper h = new FirstFrameAnimatorHelper(vpa, v); |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 566 | } |
| 567 | } |
| 568 | mItemToAnimateInWhenWindowAnimationIsFinished = null; |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 569 | mAnimateIconOfFirstTask = false; |
Michael Jurka | 9bdaada | 2012-10-01 13:58:29 +0200 | [diff] [blame] | 570 | } |
| 571 | } |
| 572 | |
Michael Jurka | d894c8c | 2012-11-20 16:46:09 -0800 | [diff] [blame] | 573 | public void onWindowAnimationStart() { |
| 574 | mWaitingForWindowAnimation = false; |
| 575 | mWindowAnimationStartTime = System.currentTimeMillis(); |
| 576 | animateInIconOfFirstTask(); |
| 577 | } |
| 578 | |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 579 | public void clearRecentTasksList() { |
| 580 | // Clear memory used by screenshots |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 581 | if (mRecentTaskDescriptions != null) { |
| 582 | mRecentTasksLoader.cancelLoadingThumbnailsAndIcons(this); |
| 583 | onTaskLoadingCancelled(); |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | public void onTaskLoadingCancelled() { |
| 588 | // Gets called by RecentTasksLoader when it's cancelled |
| 589 | if (mRecentTaskDescriptions != null) { |
| 590 | mRecentTaskDescriptions = null; |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 591 | mListAdapter.notifyDataSetInvalidated(); |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 592 | } |
| 593 | } |
| 594 | |
Craig Mautner | ca6da00 | 2012-09-20 14:54:37 -0700 | [diff] [blame] | 595 | public void refreshViews() { |
| 596 | mListAdapter.notifyDataSetInvalidated(); |
| 597 | updateUiElements(); |
| 598 | showIfReady(); |
| 599 | } |
| 600 | |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 601 | public void refreshRecentTasksList() { |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 602 | refreshRecentTasksList(null, false); |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 605 | private void refreshRecentTasksList( |
| 606 | ArrayList<TaskDescription> recentTasksList, boolean firstScreenful) { |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 607 | if (mRecentTaskDescriptions == null && recentTasksList != null) { |
| 608 | onTasksLoaded(recentTasksList, firstScreenful); |
| 609 | } else { |
| 610 | mRecentTasksLoader.loadTasksInBackground(); |
Michael Jurka | 412cba8 | 2011-10-17 09:05:00 -0700 | [diff] [blame] | 611 | } |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 612 | } |
Michael Jurka | 7daf95d | 2011-09-30 11:07:30 -0700 | [diff] [blame] | 613 | |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 614 | public void onTasksLoaded(ArrayList<TaskDescription> tasks, boolean firstScreenful) { |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 615 | if (mRecentTaskDescriptions == null) { |
Craig Mautner | bb1449b3 | 2012-03-23 16:11:14 -0700 | [diff] [blame] | 616 | mRecentTaskDescriptions = new ArrayList<TaskDescription>(tasks); |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 617 | } else { |
| 618 | mRecentTaskDescriptions.addAll(tasks); |
| 619 | } |
Michael Jurka | 7ed267f | 2012-10-09 17:03:30 +0200 | [diff] [blame] | 620 | if (((RecentsActivity) mContext).isActivityShowing()) { |
Craig Mautner | ca6da00 | 2012-09-20 14:54:37 -0700 | [diff] [blame] | 621 | refreshViews(); |
| 622 | } |
Michael Jurka | 99a9655 | 2012-01-27 17:23:38 -0800 | [diff] [blame] | 623 | } |
| 624 | |
Craig Mautner | ca6da00 | 2012-09-20 14:54:37 -0700 | [diff] [blame] | 625 | private void updateUiElements() { |
Dianne Hackborn | 8da429e | 2012-09-23 12:52:19 -0700 | [diff] [blame] | 626 | final int items = mRecentTaskDescriptions != null |
| 627 | ? mRecentTaskDescriptions.size() : 0; |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 628 | |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 629 | ((View) mRecentsContainer).setVisibility(items > 0 ? View.VISIBLE : View.GONE); |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 630 | |
| 631 | // Set description for accessibility |
Dianne Hackborn | 8da429e | 2012-09-23 12:52:19 -0700 | [diff] [blame] | 632 | int numRecentApps = mRecentTaskDescriptions != null |
| 633 | ? mRecentTaskDescriptions.size() : 0; |
Michael Jurka | 7daf95d | 2011-09-30 11:07:30 -0700 | [diff] [blame] | 634 | String recentAppsAccessibilityDescription; |
| 635 | if (numRecentApps == 0) { |
| 636 | recentAppsAccessibilityDescription = |
| 637 | getResources().getString(R.string.status_bar_no_recent_apps); |
| 638 | } else { |
| 639 | recentAppsAccessibilityDescription = getResources().getQuantityString( |
| 640 | R.plurals.status_bar_accessibility_recent_apps, numRecentApps, numRecentApps); |
| 641 | } |
| 642 | setContentDescription(recentAppsAccessibilityDescription); |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 643 | } |
| 644 | |
Michael Jurka | e592363 | 2012-10-03 15:29:36 +0200 | [diff] [blame] | 645 | public boolean simulateClick(int persistentTaskId) { |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 646 | View v = mRecentsContainer.findViewForTask(persistentTaskId); |
| 647 | if (v != null) { |
| 648 | handleOnClick(v); |
| 649 | return true; |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 650 | } |
| 651 | return false; |
| 652 | } |
Michael Jurka | c016aaa | 2012-06-05 17:22:24 -0700 | [diff] [blame] | 653 | |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 654 | public void handleOnClick(View view) { |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 655 | ViewHolder holder = (ViewHolder) view.getTag(); |
Dianne Hackborn | 8078d8c | 2012-03-20 11:11:26 -0700 | [diff] [blame] | 656 | TaskDescription ad = holder.taskDescription; |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 657 | final Context context = view.getContext(); |
Jim Miller | e5c16ab | 2010-12-03 19:18:38 -0800 | [diff] [blame] | 658 | final ActivityManager am = (ActivityManager) |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 659 | context.getSystemService(Context.ACTIVITY_SERVICE); |
Michael Jurka | 9926272 | 2013-09-17 14:18:04 +0200 | [diff] [blame] | 660 | |
| 661 | Bitmap bm = null; |
| 662 | boolean usingDrawingCache = true; |
| 663 | if (holder.thumbnailViewDrawable instanceof BitmapDrawable) { |
| 664 | bm = ((BitmapDrawable) holder.thumbnailViewDrawable).getBitmap(); |
| 665 | if (bm.getWidth() == holder.thumbnailViewImage.getWidth() && |
| 666 | bm.getHeight() == holder.thumbnailViewImage.getHeight()) { |
| 667 | usingDrawingCache = false; |
| 668 | } |
| 669 | } |
| 670 | if (usingDrawingCache) { |
Michael Jurka | c016aaa | 2012-06-05 17:22:24 -0700 | [diff] [blame] | 671 | holder.thumbnailViewImage.setDrawingCacheEnabled(true); |
| 672 | bm = holder.thumbnailViewImage.getDrawingCache(); |
Michael Jurka | c016aaa | 2012-06-05 17:22:24 -0700 | [diff] [blame] | 673 | } |
Michael Jurka | 482f159 | 2012-09-13 11:05:59 -0700 | [diff] [blame] | 674 | Bundle opts = (bm == null) ? |
| 675 | null : |
| 676 | ActivityOptions.makeThumbnailScaleUpAnimation( |
| 677 | holder.thumbnailViewImage, bm, 0, 0, null).toBundle(); |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 678 | |
| 679 | show(false); |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 680 | if (ad.taskId >= 0) { |
Dianne Hackborn | b677746 | 2010-11-12 12:43:22 -0800 | [diff] [blame] | 681 | // This is an active task; it should just go to the foreground. |
Dianne Hackborn | 8078d8c | 2012-03-20 11:11:26 -0700 | [diff] [blame] | 682 | am.moveTaskToFront(ad.taskId, ActivityManager.MOVE_TASK_WITH_HOME, |
Michael Jurka | 482f159 | 2012-09-13 11:05:59 -0700 | [diff] [blame] | 683 | opts); |
Dianne Hackborn | b677746 | 2010-11-12 12:43:22 -0800 | [diff] [blame] | 684 | } else { |
| 685 | Intent intent = ad.intent; |
Dianne Hackborn | 621e17d | 2010-11-22 15:59:56 -0800 | [diff] [blame] | 686 | intent.addFlags(Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY |
Dianne Hackborn | 38cc896 | 2011-10-13 11:33:55 -0700 | [diff] [blame] | 687 | | Intent.FLAG_ACTIVITY_TASK_ON_HOME |
| 688 | | Intent.FLAG_ACTIVITY_NEW_TASK); |
Dianne Hackborn | b677746 | 2010-11-12 12:43:22 -0800 | [diff] [blame] | 689 | if (DEBUG) Log.v(TAG, "Starting activity " + intent); |
Michael Jurka | a2bdffe | 2013-02-08 15:41:56 +0100 | [diff] [blame] | 690 | try { |
| 691 | context.startActivityAsUser(intent, opts, |
| 692 | new UserHandle(UserHandle.USER_CURRENT)); |
| 693 | } catch (SecurityException e) { |
| 694 | Log.e(TAG, "Recents does not have the permission to launch " + intent, e); |
Michael Jurka | 4e85f46 | 2013-09-16 19:52:21 +0200 | [diff] [blame] | 695 | } catch (ActivityNotFoundException e) { |
| 696 | Log.e(TAG, "Error launching activity " + intent, e); |
Michael Jurka | a2bdffe | 2013-02-08 15:41:56 +0100 | [diff] [blame] | 697 | } |
Dianne Hackborn | b677746 | 2010-11-12 12:43:22 -0800 | [diff] [blame] | 698 | } |
Michael Jurka | b9a38c5 | 2012-06-14 11:57:50 -0700 | [diff] [blame] | 699 | if (usingDrawingCache) { |
Michael Jurka | c016aaa | 2012-06-05 17:22:24 -0700 | [diff] [blame] | 700 | holder.thumbnailViewImage.setDrawingCacheEnabled(false); |
| 701 | } |
Jim Miller | f1e22e5 | 2011-01-26 15:39:51 -0800 | [diff] [blame] | 702 | } |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 703 | |
| 704 | public void onItemClick(AdapterView<?> parent, View view, int position, long id) { |
| 705 | handleOnClick(view); |
| 706 | } |
| 707 | |
Michael Jurka | 07d4046e | 2011-07-19 10:54:38 -0700 | [diff] [blame] | 708 | public void handleSwipe(View view) { |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 709 | TaskDescription ad = ((ViewHolder) view.getTag()).taskDescription; |
Michael Jurka | a8eac1d | 2012-04-30 15:54:19 -0700 | [diff] [blame] | 710 | if (ad == null) { |
Michael Jurka | 9d69b44 | 2012-05-04 15:46:32 -0700 | [diff] [blame] | 711 | Log.v(TAG, "Not able to find activity description for swiped task; view=" + view + |
| 712 | " tag=" + view.getTag()); |
| 713 | return; |
Michael Jurka | a8eac1d | 2012-04-30 15:54:19 -0700 | [diff] [blame] | 714 | } |
Dianne Hackborn | fc8fa63 | 2011-08-17 16:20:47 -0700 | [diff] [blame] | 715 | if (DEBUG) Log.v(TAG, "Jettison " + ad.getLabel()); |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 716 | mRecentTaskDescriptions.remove(ad); |
Michael Jurka | e57922c | 2012-11-26 16:05:12 -0800 | [diff] [blame] | 717 | mRecentTasksLoader.remove(ad); |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 718 | |
| 719 | // Handled by widget containers to enable LayoutTransitions properly |
| 720 | // mListAdapter.notifyDataSetChanged(); |
| 721 | |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 722 | if (mRecentTaskDescriptions.size() == 0) { |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 723 | dismissAndGoBack(); |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | // Currently, either direction means the same thing, so ignore direction and remove |
| 727 | // the task. |
| 728 | final ActivityManager am = (ActivityManager) |
| 729 | mContext.getSystemService(Context.ACTIVITY_SERVICE); |
Michael Jurka | a8eac1d | 2012-04-30 15:54:19 -0700 | [diff] [blame] | 730 | if (am != null) { |
| 731 | am.removeTask(ad.persistentTaskId, ActivityManager.REMOVE_TASK_KILL_PROCESS); |
Jim Miller | 1737776 | 2011-10-11 15:33:34 -0700 | [diff] [blame] | 732 | |
Michael Jurka | a8eac1d | 2012-04-30 15:54:19 -0700 | [diff] [blame] | 733 | // Accessibility feedback |
| 734 | setContentDescription( |
| 735 | mContext.getString(R.string.accessibility_recents_item_dismissed, ad.getLabel())); |
| 736 | sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED); |
| 737 | setContentDescription(null); |
| 738 | } |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 739 | } |
| 740 | |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 741 | private void startApplicationDetailsActivity(String packageName) { |
| 742 | Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, |
| 743 | Uri.fromParts("package", packageName, null)); |
Adam Powell | 0fc5b2b | 2012-07-18 18:20:29 -0700 | [diff] [blame] | 744 | intent.setComponent(intent.resolveActivity(mContext.getPackageManager())); |
| 745 | TaskStackBuilder.create(getContext()) |
| 746 | .addNextIntentWithParentStack(intent).startActivities(); |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 747 | } |
| 748 | |
Michael Jurka | cb46643 | 2012-04-03 05:22:45 -0700 | [diff] [blame] | 749 | public boolean onInterceptTouchEvent(MotionEvent ev) { |
| 750 | if (mPopup != null) { |
| 751 | return true; |
| 752 | } else { |
| 753 | return super.onInterceptTouchEvent(ev); |
| 754 | } |
| 755 | } |
| 756 | |
Michael Jurka | faa790c | 2011-09-02 17:35:02 -0700 | [diff] [blame] | 757 | public void handleLongPress( |
| 758 | final View selectedView, final View anchorView, final View thumbnailView) { |
| 759 | thumbnailView.setSelected(true); |
Michael Jurka | cb46643 | 2012-04-03 05:22:45 -0700 | [diff] [blame] | 760 | final PopupMenu popup = |
| 761 | new PopupMenu(mContext, anchorView == null ? selectedView : anchorView); |
| 762 | mPopup = popup; |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 763 | popup.getMenuInflater().inflate(R.menu.recent_popup_menu, popup.getMenu()); |
| 764 | popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() { |
| 765 | public boolean onMenuItemClick(MenuItem item) { |
| 766 | if (item.getItemId() == R.id.recent_remove_item) { |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 767 | ((ViewGroup) mRecentsContainer).removeViewInLayout(selectedView); |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 768 | } else if (item.getItemId() == R.id.recent_inspect_item) { |
| 769 | ViewHolder viewHolder = (ViewHolder) selectedView.getTag(); |
| 770 | if (viewHolder != null) { |
Michael Jurka | ab48b68 | 2011-09-12 15:39:45 -0700 | [diff] [blame] | 771 | final TaskDescription ad = viewHolder.taskDescription; |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 772 | startApplicationDetailsActivity(ad.packageName); |
Michael Jurka | cb2522c | 2012-04-13 09:32:47 -0700 | [diff] [blame] | 773 | show(false); |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 774 | } else { |
| 775 | throw new IllegalStateException("Oops, no tag on view " + selectedView); |
| 776 | } |
| 777 | } else { |
| 778 | return false; |
| 779 | } |
| 780 | return true; |
| 781 | } |
| 782 | }); |
Michael Jurka | faa790c | 2011-09-02 17:35:02 -0700 | [diff] [blame] | 783 | popup.setOnDismissListener(new PopupMenu.OnDismissListener() { |
| 784 | public void onDismiss(PopupMenu menu) { |
| 785 | thumbnailView.setSelected(false); |
Michael Jurka | cb46643 | 2012-04-03 05:22:45 -0700 | [diff] [blame] | 786 | mPopup = null; |
Michael Jurka | faa790c | 2011-09-02 17:35:02 -0700 | [diff] [blame] | 787 | } |
| 788 | }); |
Jim Miller | c0d2731 | 2011-07-14 18:54:01 -0700 | [diff] [blame] | 789 | popup.show(); |
Jim Miller | 9f0f0e0 | 2011-05-17 20:06:29 -0700 | [diff] [blame] | 790 | } |
Michael Jurka | 4a6bc55 | 2013-09-17 17:42:54 +0200 | [diff] [blame] | 791 | |
| 792 | @Override |
| 793 | protected void dispatchDraw(Canvas canvas) { |
| 794 | super.dispatchDraw(canvas); |
| 795 | |
| 796 | int paddingLeft = mPaddingLeft; |
| 797 | final boolean offsetRequired = isPaddingOffsetRequired(); |
| 798 | if (offsetRequired) { |
| 799 | paddingLeft += getLeftPaddingOffset(); |
| 800 | } |
| 801 | |
| 802 | int left = mScrollX + paddingLeft; |
| 803 | int right = left + mRight - mLeft - mPaddingRight - paddingLeft; |
| 804 | int top = mScrollY + getFadeTop(offsetRequired); |
| 805 | int bottom = top + getFadeHeight(offsetRequired); |
| 806 | |
| 807 | if (offsetRequired) { |
| 808 | right += getRightPaddingOffset(); |
| 809 | bottom += getBottomPaddingOffset(); |
| 810 | } |
| 811 | mRecentsContainer.drawFadedEdges(canvas, left, right, top, bottom); |
| 812 | } |
Jim Miller | 44c66fe | 2010-10-20 18:32:52 -0700 | [diff] [blame] | 813 | } |