blob: 58ce03baa136e2cdf3d7c6274af2de2b2eb659c2 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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.internal.app;
18
Hyunyoung Song16b7af42018-10-05 14:00:42 -070019import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
20
Adam Powell4c470d62015-06-19 17:46:17 -070021import android.annotation.Nullable;
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -070022import android.annotation.StringRes;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -080023import android.annotation.UiThread;
Andrei Onea15884392019-03-22 17:28:11 +000024import android.annotation.UnsupportedAppUsage;
Adam Powelle9414d92014-07-05 17:44:18 -070025import android.app.Activity;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080026import android.app.ActivityManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070027import android.app.ActivityTaskManager;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -070028import android.app.ActivityThread;
Adam Powell4c470d62015-06-19 17:46:17 -070029import android.app.VoiceInteractor.PickOptionRequest;
30import android.app.VoiceInteractor.PickOptionRequest.Option;
31import android.app.VoiceInteractor.Prompt;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.content.ComponentName;
33import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.content.Intent;
35import android.content.IntentFilter;
36import android.content.pm.ActivityInfo;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010037import android.content.pm.ApplicationInfo;
Dianne Hackborneb034652009-09-07 00:49:58 -070038import android.content.pm.LabeledIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.content.pm.PackageManager;
Adam Powellc5878612012-05-04 18:42:38 -070040import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.content.pm.ResolveInfo;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010042import android.content.pm.UserInfo;
Jiongxuan Gao3365b162016-11-24 20:20:27 +090043import android.content.res.Configuration;
Adam Powellc5878612012-05-04 18:42:38 -070044import android.content.res.Resources;
Mike Digman9c4ae502019-03-19 17:02:25 -070045import android.graphics.Bitmap;
Matt Pietala4b30072019-04-04 13:44:36 -040046import android.graphics.ColorMatrix;
47import android.graphics.ColorMatrixColorFilter;
Matt Pietal800136a2019-05-08 07:46:39 -040048import android.graphics.Insets;
Mike Digman220587e2019-03-13 11:21:42 -070049import android.graphics.drawable.BitmapDrawable;
Dianne Hackborneb034652009-09-07 00:49:58 -070050import android.graphics.drawable.Drawable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051import android.net.Uri;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080052import android.os.AsyncTask;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010053import android.os.Build;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054import android.os.Bundle;
Alison Cichowlas3e340502018-08-07 17:15:01 -040055import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.os.PatternMatcher;
Mike Digman220587e2019-03-13 11:21:42 -070057import android.os.Process;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080058import android.os.RemoteException;
Jeff Sharkey37355a92016-02-05 16:19:10 -070059import android.os.StrictMode;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070060import android.os.UserHandle;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010061import android.os.UserManager;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080062import android.provider.MediaStore;
63import android.provider.Settings;
64import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065import android.util.Log;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080066import android.util.Slog;
Adam Powell2d809622012-03-22 15:24:43 -070067import android.view.LayoutInflater;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.view.View;
69import android.view.ViewGroup;
Matt Pietal800136a2019-05-08 07:46:39 -040070import android.view.ViewGroup.LayoutParams;
71import android.view.WindowInsets;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080072import android.widget.AbsListView;
Adam Powell2d809622012-03-22 15:24:43 -070073import android.widget.AdapterView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074import android.widget.BaseAdapter;
Adam Powellc5878612012-05-04 18:42:38 -070075import android.widget.Button;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.widget.ImageView;
Adam Powell2d809622012-03-22 15:24:43 -070077import android.widget.ListView;
Matt Pietal800136a2019-05-08 07:46:39 -040078import android.widget.Space;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079import android.widget.TextView;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010080import android.widget.Toast;
Hyunyoung Song16b7af42018-10-05 14:00:42 -070081
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080082import com.android.internal.R;
83import com.android.internal.annotations.VisibleForTesting;
84import com.android.internal.content.PackageMonitor;
Clara Bayarrifa902aa2016-04-13 14:45:08 +010085import com.android.internal.logging.MetricsLogger;
Tamas Berghammer383db5eb2016-06-22 15:21:38 +010086import com.android.internal.logging.nano.MetricsProto;
Adam Powell4f6c2052014-07-07 18:49:10 -070087import com.android.internal.widget.ResolverDrawerLayout;
Adam Powell2d809622012-03-22 15:24:43 -070088
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089import java.util.ArrayList;
Clara Bayarrifa902aa2016-04-13 14:45:08 +010090import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091import java.util.Iterator;
92import java.util.List;
Adam Powellc412be62015-06-24 13:54:10 -070093import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094import java.util.Set;
95
96/**
97 * This activity is displayed when the system attempts to start an Intent for
98 * which there is more than one matching activity, allowing the user to decide
99 * which to go to. It is not normally used directly by application developers.
100 */
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800101@UiThread
Adam Powell7d758002015-05-06 17:49:36 -0700102public class ResolverActivity extends Activity {
Adam Powellc5878612012-05-04 18:42:38 -0700103
Alison Cichowlas4691ed42018-11-13 15:59:55 -0500104 // Temporary flag for new chooser delegate behavior.
Alison Cichowlas7b6f3b62018-12-07 09:06:57 -0500105 boolean mEnableChooserDelegate = true;
Alison Cichowlas4691ed42018-11-13 15:59:55 -0500106
Andrei Onea15884392019-03-22 17:28:11 +0000107 @UnsupportedAppUsage
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800108 protected ResolveListAdapter mAdapter;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700109 private boolean mSafeForwardingMode;
Matt Pietal5b648562019-03-12 07:40:26 -0400110 protected AbsListView mAdapterView;
Adam Powellc5878612012-05-04 18:42:38 -0700111 private Button mAlwaysButton;
112 private Button mOnceButton;
Matt Pietal74c6ed02019-04-18 13:38:46 -0400113 protected View mProfileView;
Adam Powellc5878612012-05-04 18:42:38 -0700114 private int mIconDpi;
Adam Powell24428412015-04-01 17:19:56 -0700115 private int mLastSelected = AbsListView.INVALID_POSITION;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100116 private boolean mResolvingHome = false;
Sander Alewijnsef6545332014-10-31 12:39:02 +0000117 private int mProfileSwitchMessageId = -1;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800118 private int mLayoutId;
Adam Powell2ed547e2015-04-29 18:45:04 -0700119 private final ArrayList<Intent> mIntents = new ArrayList<>();
Adam Powell4c470d62015-06-19 17:46:17 -0700120 private PickTargetOptionRequest mPickOptionRequest;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800121 private String mReferrerPackage;
Hakan Seyalioglu33550122017-01-06 19:54:43 -0800122 private CharSequence mTitle;
123 private int mDefaultTitleResId;
shafik69df96322018-12-18 15:41:19 +0000124 private boolean mUseLayoutForBrowsables;
Adam Powell09a65602014-07-20 16:23:14 -0700125
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800126 // Whether or not this activity supports choosing a default handler for the intent.
127 private boolean mSupportsAlwaysUseOption;
Adam Powell63b31692015-09-28 10:45:00 -0700128 protected ResolverDrawerLayout mResolverDrawerLayout;
Andrei Onea15884392019-03-22 17:28:11 +0000129 @UnsupportedAppUsage
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800130 protected PackageManager mPm;
131 protected int mLaunchedFromUid;
132
133 private static final String TAG = "ResolverActivity";
134 private static final boolean DEBUG = false;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800135 private Runnable mPostListReadyRunnable;
Adam Powell63b31692015-09-28 10:45:00 -0700136
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700137 private boolean mRegistered;
Jorim Jaggif631ef72017-02-24 13:49:47 +0100138
Matt Pietala4b30072019-04-04 13:44:36 -0400139 private ColorMatrixColorFilter mSuspendedMatrixColorFilter;
140
Matt Pietal800136a2019-05-08 07:46:39 -0400141 protected Insets mSystemWindowInsets = null;
142 private Space mFooterSpacer = null;
143
Jorim Jaggif631ef72017-02-24 13:49:47 +0100144 /** See {@link #setRetainInOnStop}. */
145 private boolean mRetainInOnStop;
146
Matt Pietal0d6834a2019-06-27 13:27:52 -0400147 private static final String EXTRA_SHOW_FRAGMENT_ARGS = ":settings:show_fragment_args";
148 private static final String EXTRA_FRAGMENT_ARG_KEY = ":settings:fragment_args_key";
149 private static final String OPEN_LINKS_COMPONENT_KEY = "app_link_state";
150
Matt Pietalab73a882019-06-05 07:04:55 -0400151 private final PackageMonitor mPackageMonitor = createPackageMonitor();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800152
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700153 /**
154 * Get the string resource to be used as a label for the link to the resolver activity for an
155 * action.
156 *
157 * @param action The action to resolve
158 *
159 * @return The string resource to be used as a label
160 */
161 public static @StringRes int getLabelRes(String action) {
162 return ActionTitle.forAction(action).labelRes;
163 }
164
Adam Powell278902c2014-07-12 18:33:22 -0700165 private enum ActionTitle {
166 VIEW(Intent.ACTION_VIEW,
167 com.android.internal.R.string.whichViewApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700168 com.android.internal.R.string.whichViewApplicationNamed,
169 com.android.internal.R.string.whichViewApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700170 EDIT(Intent.ACTION_EDIT,
171 com.android.internal.R.string.whichEditApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700172 com.android.internal.R.string.whichEditApplicationNamed,
173 com.android.internal.R.string.whichEditApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700174 SEND(Intent.ACTION_SEND,
175 com.android.internal.R.string.whichSendApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700176 com.android.internal.R.string.whichSendApplicationNamed,
177 com.android.internal.R.string.whichSendApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700178 SENDTO(Intent.ACTION_SENDTO,
Adam Powell13ea8f42016-03-18 09:39:41 -0700179 com.android.internal.R.string.whichSendToApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700180 com.android.internal.R.string.whichSendToApplicationNamed,
181 com.android.internal.R.string.whichSendToApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700182 SEND_MULTIPLE(Intent.ACTION_SEND_MULTIPLE,
183 com.android.internal.R.string.whichSendApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700184 com.android.internal.R.string.whichSendApplicationNamed,
185 com.android.internal.R.string.whichSendApplicationLabel),
186 CAPTURE_IMAGE(MediaStore.ACTION_IMAGE_CAPTURE,
187 com.android.internal.R.string.whichImageCaptureApplication,
188 com.android.internal.R.string.whichImageCaptureApplicationNamed,
189 com.android.internal.R.string.whichImageCaptureApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700190 DEFAULT(null,
191 com.android.internal.R.string.whichApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700192 com.android.internal.R.string.whichApplicationNamed,
193 com.android.internal.R.string.whichApplicationLabel),
Adam Powella35c77a2014-09-25 16:46:36 -0700194 HOME(Intent.ACTION_MAIN,
195 com.android.internal.R.string.whichHomeApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700196 com.android.internal.R.string.whichHomeApplicationNamed,
197 com.android.internal.R.string.whichHomeApplicationLabel);
Adam Powell278902c2014-07-12 18:33:22 -0700198
shafik0c7c5d52019-02-27 12:13:25 +0000199 // titles for layout that deals with http(s) intents
shafik69df96322018-12-18 15:41:19 +0000200 public static final int BROWSABLE_TITLE_RES =
Matt Pietal0d6834a2019-06-27 13:27:52 -0400201 com.android.internal.R.string.whichOpenLinksWith;
202 public static final int BROWSABLE_HOST_TITLE_RES =
203 com.android.internal.R.string.whichOpenHostLinksWith;
204 public static final int BROWSABLE_HOST_APP_TITLE_RES =
205 com.android.internal.R.string.whichOpenHostLinksWithApp;
206 public static final int BROWSABLE_APP_TITLE_RES =
207 com.android.internal.R.string.whichOpenLinksWithApp;
shafik69df96322018-12-18 15:41:19 +0000208
Adam Powell278902c2014-07-12 18:33:22 -0700209 public final String action;
210 public final int titleRes;
211 public final int namedTitleRes;
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700212 public final @StringRes int labelRes;
Adam Powell278902c2014-07-12 18:33:22 -0700213
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700214 ActionTitle(String action, int titleRes, int namedTitleRes, @StringRes int labelRes) {
Adam Powell278902c2014-07-12 18:33:22 -0700215 this.action = action;
216 this.titleRes = titleRes;
217 this.namedTitleRes = namedTitleRes;
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700218 this.labelRes = labelRes;
Adam Powell278902c2014-07-12 18:33:22 -0700219 }
220
221 public static ActionTitle forAction(String action) {
222 for (ActionTitle title : values()) {
Adam Powella35c77a2014-09-25 16:46:36 -0700223 if (title != HOME && action != null && action.equals(title.action)) {
Adam Powell278902c2014-07-12 18:33:22 -0700224 return title;
225 }
226 }
227 return DEFAULT;
228 }
229 }
230
Matt Pietalab73a882019-06-05 07:04:55 -0400231 protected PackageMonitor createPackageMonitor() {
232 return new PackageMonitor() {
233 @Override
234 public void onSomePackagesChanged() {
235 mAdapter.handlePackagesChanged();
236 bindProfileView();
237 }
238
239 @Override
240 public boolean onPackageChanged(String packageName, int uid, String[] components) {
241 // We care about all package changes, not just the whole package itself which is
242 // default behavior.
243 return true;
244 }
245 };
246 }
247
Dianne Hackborn905577f2011-09-07 18:31:28 -0700248 private Intent makeMyIntent() {
249 Intent intent = new Intent(getIntent());
Dianne Hackborn6d8dfbd2013-09-23 17:38:51 -0700250 intent.setComponent(null);
Dianne Hackborn905577f2011-09-07 18:31:28 -0700251 // The resolver activity is set to be hidden from recent tasks.
252 // we don't want this attribute to be propagated to the next activity
253 // being launched. Note that if the original Intent also had this
254 // flag set, we are now losing it. That should be a very rare case
255 // and we can live with this.
256 intent.setFlags(intent.getFlags()&~Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
257 return intent;
258 }
259
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 @Override
261 protected void onCreate(Bundle savedInstanceState) {
Christopher Tateb72b3632013-09-30 17:50:32 -0700262 // Use a specialized prompt when we're handling the 'Home' app startActivity()
Christopher Tateb72b3632013-09-30 17:50:32 -0700263 final Intent intent = makeMyIntent();
264 final Set<String> categories = intent.getCategories();
265 if (Intent.ACTION_MAIN.equals(intent.getAction())
266 && categories != null
267 && categories.size() == 1
268 && categories.contains(Intent.CATEGORY_HOME)) {
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100269 // Note: this field is not set to true in the compatibility version.
270 mResolvingHome = true;
Christopher Tateb72b3632013-09-30 17:50:32 -0700271 }
272
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700273 setSafeForwardingMode(true);
274
Adam Powella35c77a2014-09-25 16:46:36 -0700275 onCreate(savedInstanceState, intent, null, 0, null, null, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 }
277
Adam Powell278902c2014-07-12 18:33:22 -0700278 /**
Adam Powell24428412015-04-01 17:19:56 -0700279 * Compatibility version for other bundled services that use this overload without
Adam Powell278902c2014-07-12 18:33:22 -0700280 * a default title resource
281 */
Andrei Onea15884392019-03-22 17:28:11 +0000282 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 protected void onCreate(Bundle savedInstanceState, Intent intent,
Adam Powell278902c2014-07-12 18:33:22 -0700284 CharSequence title, Intent[] initialIntents,
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800285 List<ResolveInfo> rList, boolean supportsAlwaysUseOption) {
286 onCreate(savedInstanceState, intent, title, 0, initialIntents, rList,
287 supportsAlwaysUseOption);
Adam Powell278902c2014-07-12 18:33:22 -0700288 }
289
290 protected void onCreate(Bundle savedInstanceState, Intent intent,
291 CharSequence title, int defaultTitleRes, Intent[] initialIntents,
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800292 List<ResolveInfo> rList, boolean supportsAlwaysUseOption) {
Adam Powelle9414d92014-07-05 17:44:18 -0700293 setTheme(R.style.Theme_DeviceDefault_Resolver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 super.onCreate(savedInstanceState);
Sander Alewijnsef6545332014-10-31 12:39:02 +0000295
296 // Determine whether we should show that intent is forwarded
297 // from managed profile to owner or other way around.
298 setProfileSwitchMessageId(intent.getContentUserHint());
299
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700300 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700301 mLaunchedFromUid = ActivityTaskManager.getService().getLaunchedFromUid(
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700302 getActivityToken());
303 } catch (RemoteException e) {
304 mLaunchedFromUid = -1;
305 }
Adam Powell7d758002015-05-06 17:49:36 -0700306
307 if (mLaunchedFromUid < 0 || UserHandle.isIsolated(mLaunchedFromUid)) {
308 // Gulp!
309 finish();
310 return;
311 }
312
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800313 mPm = getPackageManager();
Adam Powell09a65602014-07-20 16:23:14 -0700314
Dianne Hackbornd0d75032012-04-19 23:12:09 -0700315 mPackageMonitor.register(this, getMainLooper(), false);
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700316 mRegistered = true;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800317 mReferrerPackage = getReferrerPackageName();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800318
Adam Powellc5878612012-05-04 18:42:38 -0700319 final ActivityManager am = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
320 mIconDpi = am.getLauncherLargeIconDensity();
Adam Powellc5878612012-05-04 18:42:38 -0700321
Adam Powell7d758002015-05-06 17:49:36 -0700322 // Add our initial intent as the first item, regardless of what else has already been added.
Adam Powell2ed547e2015-04-29 18:45:04 -0700323 mIntents.add(0, new Intent(intent));
Hakan Seyalioglu33550122017-01-06 19:54:43 -0800324 mTitle = title;
325 mDefaultTitleResId = defaultTitleRes;
Adam Powell278902c2014-07-12 18:33:22 -0700326
shafik69df96322018-12-18 15:41:19 +0000327 mUseLayoutForBrowsables = getTargetIntent() == null
328 ? false
shafik0c7c5d52019-02-27 12:13:25 +0000329 : isHttpSchemeAndViewAction(getTargetIntent());
shafik69df96322018-12-18 15:41:19 +0000330
Matt Pietal0d6834a2019-06-27 13:27:52 -0400331 mSupportsAlwaysUseOption = supportsAlwaysUseOption;
shafik69df96322018-12-18 15:41:19 +0000332
Hakan Seyalioglu33550122017-01-06 19:54:43 -0800333 if (configureContentView(mIntents, initialIntents, rList)) {
Adam Powell39e94eb2015-09-08 17:01:49 -0700334 return;
335 }
Adam Powell278902c2014-07-12 18:33:22 -0700336
Alan Viverette51efddb2017-04-05 10:00:01 -0400337 final ResolverDrawerLayout rdl = findViewById(R.id.contentPanel);
Adam Powell4f6c2052014-07-07 18:49:10 -0700338 if (rdl != null) {
Adam Powell5dd072d2014-10-30 19:51:41 -0700339 rdl.setOnDismissedListener(new ResolverDrawerLayout.OnDismissedListener() {
Adam Powell4f6c2052014-07-07 18:49:10 -0700340 @Override
Adam Powell5dd072d2014-10-30 19:51:41 -0700341 public void onDismissed() {
Adam Powell4f6c2052014-07-07 18:49:10 -0700342 finish();
343 }
344 });
Adam Powell4c470d62015-06-19 17:46:17 -0700345 if (isVoiceInteraction()) {
346 rdl.setCollapsed(false);
347 }
Matt Pietal800136a2019-05-08 07:46:39 -0400348
349 rdl.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
350 | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
351 rdl.setOnApplyWindowInsetsListener(this::onApplyWindowInsets);
352
Adam Powell63b31692015-09-28 10:45:00 -0700353 mResolverDrawerLayout = rdl;
Adam Powell4f6c2052014-07-07 18:49:10 -0700354 }
355
Adam Powell88831a22014-11-20 18:17:00 -0800356 mProfileView = findViewById(R.id.profile_button);
357 if (mProfileView != null) {
Matt Pietal74c6ed02019-04-18 13:38:46 -0400358 mProfileView.setOnClickListener(this::onProfileClick);
Adam Powell88831a22014-11-20 18:17:00 -0800359 bindProfileView();
360 }
Adam Powell4c470d62015-06-19 17:46:17 -0700361
Matt Pietala4b30072019-04-04 13:44:36 -0400362 initSuspendedColorMatrix();
363
Adam Powell4c470d62015-06-19 17:46:17 -0700364 if (isVoiceInteraction()) {
365 onSetupVoiceInteraction();
366 }
Clara Bayarri9550f5d2016-05-11 11:20:13 +0100367 final Set<String> categories = intent.getCategories();
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100368 MetricsLogger.action(this, mAdapter.hasFilteredItem()
369 ? MetricsProto.MetricsEvent.ACTION_SHOW_APP_DISAMBIG_APP_FEATURED
370 : MetricsProto.MetricsEvent.ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED,
371 intent.getAction() + ":" + intent.getType() + ":"
Clara Bayarri9550f5d2016-05-11 11:20:13 +0100372 + (categories != null ? Arrays.toString(categories.toArray()) : ""));
Adam Powell4c470d62015-06-19 17:46:17 -0700373 }
374
Matt Pietal74c6ed02019-04-18 13:38:46 -0400375 protected void onProfileClick(View v) {
376 final DisplayResolveInfo dri = mAdapter.getOtherProfile();
377 if (dri == null) {
378 return;
379 }
380
381 // Do not show the profile switch message anymore.
382 mProfileSwitchMessageId = -1;
383
384 onTargetSelected(dri, false);
385 finish();
386 }
387
Matt Pietal800136a2019-05-08 07:46:39 -0400388 protected WindowInsets onApplyWindowInsets(View v, WindowInsets insets) {
389 mSystemWindowInsets = insets.getSystemWindowInsets();
390
391 mResolverDrawerLayout.setPadding(mSystemWindowInsets.left, mSystemWindowInsets.top,
392 mSystemWindowInsets.right, 0);
393
394 View emptyView = findViewById(R.id.empty);
Matt Pietal32922ca2019-05-29 07:39:21 -0400395 if (emptyView != null) {
396 emptyView.setPadding(0, 0, 0, mSystemWindowInsets.bottom
397 + getResources().getDimensionPixelSize(
398 R.dimen.chooser_edge_margin_normal) * 2);
399 }
Matt Pietal800136a2019-05-08 07:46:39 -0400400
401 if (mFooterSpacer == null) {
402 mFooterSpacer = new Space(getApplicationContext());
403 } else {
404 ((ListView) mAdapterView).removeFooterView(mFooterSpacer);
405 }
406 mFooterSpacer.setLayoutParams(new AbsListView.LayoutParams(LayoutParams.MATCH_PARENT,
407 mSystemWindowInsets.bottom));
408 ((ListView) mAdapterView).addFooterView(mFooterSpacer);
409
Matt Pietal78fdbd42019-06-05 07:08:08 -0400410 resetButtonBar();
411
Matt Pietal800136a2019-05-08 07:46:39 -0400412 return insets.consumeSystemWindowInsets();
413 }
414
Jiongxuan Gao3365b162016-11-24 20:20:27 +0900415 @Override
416 public void onConfigurationChanged(Configuration newConfig) {
417 super.onConfigurationChanged(newConfig);
418 mAdapter.handlePackagesChanged();
Matt Pietal800136a2019-05-08 07:46:39 -0400419
420 if (mSystemWindowInsets != null) {
421 mResolverDrawerLayout.setPadding(mSystemWindowInsets.left, mSystemWindowInsets.top,
422 mSystemWindowInsets.right, 0);
423 }
Jiongxuan Gao3365b162016-11-24 20:20:27 +0900424 }
425
Matt Pietala4b30072019-04-04 13:44:36 -0400426 private void initSuspendedColorMatrix() {
427 int grayValue = 127;
428 float scale = 0.5f; // half bright
429
430 ColorMatrix tempBrightnessMatrix = new ColorMatrix();
431 float[] mat = tempBrightnessMatrix.getArray();
432 mat[0] = scale;
433 mat[6] = scale;
434 mat[12] = scale;
435 mat[4] = grayValue;
436 mat[9] = grayValue;
437 mat[14] = grayValue;
438
439 ColorMatrix matrix = new ColorMatrix();
440 matrix.setSaturation(0.0f);
441 matrix.preConcat(tempBrightnessMatrix);
442 mSuspendedMatrixColorFilter = new ColorMatrixColorFilter(matrix);
443 }
444
Adam Powell4c470d62015-06-19 17:46:17 -0700445 /**
446 * Perform any initialization needed for voice interaction.
447 */
Adam Powell23882512016-01-29 10:21:00 -0800448 public void onSetupVoiceInteraction() {
Adam Powell4c470d62015-06-19 17:46:17 -0700449 // Do it right now. Subclasses may delay this and send it later.
450 sendVoiceChoicesIfNeeded();
451 }
452
Adam Powell23882512016-01-29 10:21:00 -0800453 public void sendVoiceChoicesIfNeeded() {
Adam Powell4c470d62015-06-19 17:46:17 -0700454 if (!isVoiceInteraction()) {
455 // Clearly not needed.
456 return;
457 }
458
459
460 final Option[] options = new Option[mAdapter.getCount()];
461 for (int i = 0, N = options.length; i < N; i++) {
462 options[i] = optionForChooserTarget(mAdapter.getItem(i), i);
463 }
464
465 mPickOptionRequest = new PickTargetOptionRequest(
466 new Prompt(getTitle()), options, null);
467 getVoiceInteractor().submitRequest(mPickOptionRequest);
468 }
469
470 Option optionForChooserTarget(TargetInfo target, int index) {
471 return new Option(target.getDisplayLabel(), index);
Adam Powell88831a22014-11-20 18:17:00 -0800472 }
473
Adam Powell2ed547e2015-04-29 18:45:04 -0700474 protected final void setAdditionalTargets(Intent[] intents) {
475 if (intents != null) {
476 for (Intent intent : intents) {
477 mIntents.add(intent);
478 }
479 }
480 }
481
Adam Powell0ccc0e92015-04-23 17:19:37 -0700482 public Intent getTargetIntent() {
Adam Powell2ed547e2015-04-29 18:45:04 -0700483 return mIntents.isEmpty() ? null : mIntents.get(0);
Adam Powell0ccc0e92015-04-23 17:19:37 -0700484 }
485
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800486 protected String getReferrerPackageName() {
Adam Powell24428412015-04-01 17:19:56 -0700487 final Uri referrer = getReferrer();
488 if (referrer != null && "android-app".equals(referrer.getScheme())) {
489 return referrer.getHost();
490 }
491 return null;
492 }
493
Adam Powell23882512016-01-29 10:21:00 -0800494 public int getLayoutResource() {
Adam Powell24428412015-04-01 17:19:56 -0700495 return R.layout.resolver_list;
496 }
497
Matt Pietal74c6ed02019-04-18 13:38:46 -0400498 protected void bindProfileView() {
499 if (mProfileView == null) {
500 return;
501 }
502
Adam Powell88831a22014-11-20 18:17:00 -0800503 final DisplayResolveInfo dri = mAdapter.getOtherProfile();
504 if (dri != null) {
505 mProfileView.setVisibility(View.VISIBLE);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800506 View text = mProfileView.findViewById(R.id.profile_button);
507 if (!(text instanceof TextView)) {
508 text = mProfileView.findViewById(R.id.text1);
509 }
510 ((TextView) text).setText(dri.getDisplayLabel());
Adam Powell88831a22014-11-20 18:17:00 -0800511 } else {
512 mProfileView.setVisibility(View.GONE);
513 }
Adam Powell278902c2014-07-12 18:33:22 -0700514 }
515
Sander Alewijnsef6545332014-10-31 12:39:02 +0000516 private void setProfileSwitchMessageId(int contentUserHint) {
517 if (contentUserHint != UserHandle.USER_CURRENT &&
518 contentUserHint != UserHandle.myUserId()) {
519 UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
520 UserInfo originUserInfo = userManager.getUserInfo(contentUserHint);
521 boolean originIsManaged = originUserInfo != null ? originUserInfo.isManagedProfile()
522 : false;
523 boolean targetIsManaged = userManager.isManagedProfile();
524 if (originIsManaged && !targetIsManaged) {
525 mProfileSwitchMessageId = com.android.internal.R.string.forward_intent_to_owner;
526 } else if (!originIsManaged && targetIsManaged) {
527 mProfileSwitchMessageId = com.android.internal.R.string.forward_intent_to_work;
528 }
529 }
530 }
531
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700532 /**
533 * Turn on launch mode that is safe to use when forwarding intents received from
534 * applications and running in system processes. This mode uses Activity.startActivityAsCaller
535 * instead of the normal Activity.startActivity for launching the activity selected
536 * by the user.
537 *
538 * <p>This mode is set to true by default if the activity is initialized through
539 * {@link #onCreate(android.os.Bundle)}. If a subclass calls one of the other onCreate
540 * methods, it is set to false by default. You must set it before calling one of the
541 * more detailed onCreate methods, so that it will be set correctly in the case where
542 * there is only one intent to resolve and it is thus started immediately.</p>
543 */
544 public void setSafeForwardingMode(boolean safeForwarding) {
545 mSafeForwardingMode = safeForwarding;
546 }
547
shafik69df96322018-12-18 15:41:19 +0000548 protected CharSequence getTitleForAction(Intent intent, int defaultTitleRes) {
549 final ActionTitle title = mResolvingHome
550 ? ActionTitle.HOME
551 : ActionTitle.forAction(intent.getAction());
552
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800553 // While there may already be a filtered item, we can only use it in the title if the list
554 // is already sorted and all information relevant to it is already in the list.
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800555 final boolean named = mAdapter.getFilteredPosition() >= 0;
Adam Powell278902c2014-07-12 18:33:22 -0700556 if (title == ActionTitle.DEFAULT && defaultTitleRes != 0) {
557 return getString(defaultTitleRes);
shafik0c7c5d52019-02-27 12:13:25 +0000558 } else if (isHttpSchemeAndViewAction(intent)) {
559 // If the Intent's scheme is http(s) then we need to warn the user that
shafik69df96322018-12-18 15:41:19 +0000560 // they're giving access for the activity to open URLs from this specific host
Matt Pietal0d6834a2019-06-27 13:27:52 -0400561 String dialogTitle = null;
562 if (named && !mUseLayoutForBrowsables) {
563 dialogTitle = getString(ActionTitle.BROWSABLE_APP_TITLE_RES,
564 mAdapter.getFilteredItem().getDisplayLabel());
565 } else if (named && mUseLayoutForBrowsables) {
566 dialogTitle = getString(ActionTitle.BROWSABLE_HOST_APP_TITLE_RES,
567 intent.getData().getHost(),
568 mAdapter.getFilteredItem().getDisplayLabel());
569 } else if (mAdapter.areAllTargetsBrowsers()) {
570 dialogTitle = getString(ActionTitle.BROWSABLE_TITLE_RES);
571 } else {
572 dialogTitle = getString(ActionTitle.BROWSABLE_HOST_TITLE_RES,
573 intent.getData().getHost());
574 }
575 return dialogTitle;
Adam Powell278902c2014-07-12 18:33:22 -0700576 } else {
Adam Powell24428412015-04-01 17:19:56 -0700577 return named
578 ? getString(title.namedTitleRes, mAdapter.getFilteredItem().getDisplayLabel())
579 : getString(title.titleRes);
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700580 }
Adam Powellc5878612012-05-04 18:42:38 -0700581 }
582
Adam Powelle9414d92014-07-05 17:44:18 -0700583 void dismiss() {
584 if (!isFinishing()) {
585 finish();
586 }
587 }
588
Adam Powellc5878612012-05-04 18:42:38 -0700589
Mike Digman220587e2019-03-13 11:21:42 -0700590 /**
Mike Digmanba232682019-03-27 14:55:26 -0700591 * Loads the icon and label for the provided ApplicationInfo. Defaults to using the application
592 * icon and label over any IntentFilter or Activity icon to increase user understanding, with an
593 * exception for applications that hold the right permission. Always attempts to use available
594 * resources over PackageManager loading mechanisms so badging can be done by iconloader. Uses
595 * Strings to strip creative formatting.
Mike Digman220587e2019-03-13 11:21:42 -0700596 */
Mike Digmanba232682019-03-27 14:55:26 -0700597 private abstract static class TargetPresentationGetter {
598 @Nullable abstract Drawable getIconSubstituteInternal();
599 @Nullable abstract String getAppSubLabelInternal();
Mike Digman220587e2019-03-13 11:21:42 -0700600
Mike Digmanba232682019-03-27 14:55:26 -0700601 private Context mCtx;
Mike Digmanba232682019-03-27 14:55:26 -0700602 private final int mIconDpi;
Mike Digman9c4ae502019-03-19 17:02:25 -0700603 private final boolean mHasSubstitutePermission;
Mike Digmanc0ef5542019-04-01 15:36:25 -0700604 private final ApplicationInfo mAi;
605
606 protected PackageManager mPm;
Mike Digman9c4ae502019-03-19 17:02:25 -0700607
Mike Digmanba232682019-03-27 14:55:26 -0700608 TargetPresentationGetter(Context ctx, int iconDpi, ApplicationInfo ai) {
609 mCtx = ctx;
610 mPm = ctx.getPackageManager();
Mike Digman9c4ae502019-03-19 17:02:25 -0700611 mAi = ai;
Mike Digmanba232682019-03-27 14:55:26 -0700612 mIconDpi = iconDpi;
Mike Digman9c4ae502019-03-19 17:02:25 -0700613 mHasSubstitutePermission = PackageManager.PERMISSION_GRANTED == mPm.checkPermission(
614 android.Manifest.permission.SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON,
615 mAi.packageName);
616 }
617
Mike Digmanb2e5e712019-04-19 15:49:10 -0700618 public Drawable getIcon(UserHandle userHandle) {
619 return new BitmapDrawable(mCtx.getResources(), getIconBitmap(userHandle));
Mike Digman9c4ae502019-03-19 17:02:25 -0700620 }
621
Mike Digmanb2e5e712019-04-19 15:49:10 -0700622 public Bitmap getIconBitmap(UserHandle userHandle) {
Mike Digman9c4ae502019-03-19 17:02:25 -0700623 Drawable dr = null;
624 if (mHasSubstitutePermission) {
Mike Digmanba232682019-03-27 14:55:26 -0700625 dr = getIconSubstituteInternal();
Mike Digman9c4ae502019-03-19 17:02:25 -0700626 }
627
628 if (dr == null) {
629 try {
630 if (mAi.icon != 0) {
631 dr = loadIconFromResource(mPm.getResourcesForApplication(mAi), mAi.icon);
Mike Digman220587e2019-03-13 11:21:42 -0700632 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700633 } catch (NameNotFoundException ignore) {
634 }
635 }
636
637 // Fall back to ApplicationInfo#loadIcon if nothing has been loaded
638 if (dr == null) {
639 dr = mAi.loadIcon(mPm);
640 }
641
Mike Digmanba232682019-03-27 14:55:26 -0700642 SimpleIconFactory sif = SimpleIconFactory.obtain(mCtx);
Mike Digmanb2e5e712019-04-19 15:49:10 -0700643 Bitmap icon = sif.createUserBadgedIconBitmap(dr, userHandle);
Mike Digman9c4ae502019-03-19 17:02:25 -0700644 sif.recycle();
645
646 return icon;
647 }
648
Mike Digmanba232682019-03-27 14:55:26 -0700649 public String getLabel() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700650 String label = null;
651 // Apps with the substitute permission will always show the sublabel as their label
652 if (mHasSubstitutePermission) {
Mike Digmanba232682019-03-27 14:55:26 -0700653 label = getAppSubLabelInternal();
Mike Digman9c4ae502019-03-19 17:02:25 -0700654 }
655
656 if (label == null) {
657 label = (String) mAi.loadLabel(mPm);
658 }
659
660 return label;
661 }
662
Mike Digmanba232682019-03-27 14:55:26 -0700663 public String getSubLabel() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700664 // Apps with the substitute permission will never have a sublabel
665 if (mHasSubstitutePermission) return null;
Mike Digmanba232682019-03-27 14:55:26 -0700666 return getAppSubLabelInternal();
667 }
668
669 protected String loadLabelFromResource(Resources res, int resId) {
670 return res.getString(resId);
Mike Digman9c4ae502019-03-19 17:02:25 -0700671 }
672
673 @Nullable
674 protected Drawable loadIconFromResource(Resources res, int resId) {
675 return res.getDrawableForDensity(resId, mIconDpi);
676 }
677
678 }
679
Mike Digmanba232682019-03-27 14:55:26 -0700680 /**
681 * Loads the icon and label for the provided ResolveInfo.
682 */
683 @VisibleForTesting
Mike Digmanc0ef5542019-04-01 15:36:25 -0700684 public static class ResolveInfoPresentationGetter extends ActivityInfoPresentationGetter {
Mike Digman9c4ae502019-03-19 17:02:25 -0700685 private final ResolveInfo mRi;
Mike Digmanba232682019-03-27 14:55:26 -0700686 public ResolveInfoPresentationGetter(Context ctx, int iconDpi, ResolveInfo ri) {
Mike Digmanc0ef5542019-04-01 15:36:25 -0700687 super(ctx, iconDpi, ri.activityInfo);
Mike Digman9c4ae502019-03-19 17:02:25 -0700688 mRi = ri;
689 }
690
691 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700692 Drawable getIconSubstituteInternal() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700693 Drawable dr = null;
694 try {
695 // Do not use ResolveInfo#getIconResource() as it defaults to the app
696 if (mRi.resolvePackageName != null && mRi.icon != 0) {
697 dr = loadIconFromResource(
698 mPm.getResourcesForApplication(mRi.resolvePackageName), mRi.icon);
Adam Powellc5878612012-05-04 18:42:38 -0700699 }
Mike Digman220587e2019-03-13 11:21:42 -0700700 } catch (NameNotFoundException e) {
701 Log.e(TAG, "SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON permission granted but "
702 + "couldn't find resources for package", e);
Adam Powellc5878612012-05-04 18:42:38 -0700703 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700704
Mike Digmanc0ef5542019-04-01 15:36:25 -0700705 // Fall back to ActivityInfo if no icon is found via ResolveInfo
706 if (dr == null) dr = super.getIconSubstituteInternal();
707
Mike Digman9c4ae502019-03-19 17:02:25 -0700708 return dr;
Adam Powellc5878612012-05-04 18:42:38 -0700709 }
Mike Digman220587e2019-03-13 11:21:42 -0700710
Mike Digman9c4ae502019-03-19 17:02:25 -0700711 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700712 String getAppSubLabelInternal() {
713 // Will default to app name if no intent filter or activity label set, make sure to
714 // check if subLabel matches label before final display
Mike Digman9c4ae502019-03-19 17:02:25 -0700715 return (String) mRi.loadLabel(mPm);
716 }
717 }
718
Mike Digmanba232682019-03-27 14:55:26 -0700719 ResolveInfoPresentationGetter makePresentationGetter(ResolveInfo ri) {
720 return new ResolveInfoPresentationGetter(this, mIconDpi, ri);
721 }
722
723 /**
724 * Loads the icon and label for the provided ActivityInfo.
725 */
726 @VisibleForTesting
727 public static class ActivityInfoPresentationGetter extends TargetPresentationGetter {
Mike Digman9c4ae502019-03-19 17:02:25 -0700728 private final ActivityInfo mActivityInfo;
Mike Digmanba232682019-03-27 14:55:26 -0700729 public ActivityInfoPresentationGetter(Context ctx, int iconDpi,
730 ActivityInfo activityInfo) {
731 super(ctx, iconDpi, activityInfo.applicationInfo);
Mike Digman9c4ae502019-03-19 17:02:25 -0700732 mActivityInfo = activityInfo;
733 }
734
735 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700736 Drawable getIconSubstituteInternal() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700737 Drawable dr = null;
Mike Digman220587e2019-03-13 11:21:42 -0700738 try {
Mike Digman9c4ae502019-03-19 17:02:25 -0700739 // Do not use ActivityInfo#getIconResource() as it defaults to the app
740 if (mActivityInfo.icon != 0) {
741 dr = loadIconFromResource(
742 mPm.getResourcesForApplication(mActivityInfo.applicationInfo),
743 mActivityInfo.icon);
744 }
745 } catch (NameNotFoundException e) {
746 Log.e(TAG, "SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON permission granted but "
747 + "couldn't find resources for package", e);
Mike Digman220587e2019-03-13 11:21:42 -0700748 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700749
750 return dr;
Mike Digman220587e2019-03-13 11:21:42 -0700751 }
752
Mike Digman9c4ae502019-03-19 17:02:25 -0700753 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700754 String getAppSubLabelInternal() {
755 // Will default to app name if no activity label set, make sure to check if subLabel
756 // matches label before final display
Mike Digman9c4ae502019-03-19 17:02:25 -0700757 return (String) mActivityInfo.loadLabel(mPm);
Mike Digman220587e2019-03-13 11:21:42 -0700758 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700759 }
Mike Digman220587e2019-03-13 11:21:42 -0700760
Mike Digmanba232682019-03-27 14:55:26 -0700761 protected ActivityInfoPresentationGetter makePresentationGetter(ActivityInfo ai) {
762 return new ActivityInfoPresentationGetter(this, mIconDpi, ai);
763 }
764
Mike Digman9c4ae502019-03-19 17:02:25 -0700765 Drawable loadIconForResolveInfo(ResolveInfo ri) {
Mike Digmanb2e5e712019-04-19 15:49:10 -0700766 // Load icons based on the current process. If in work profile icons should be badged.
767 return makePresentationGetter(ri).getIcon(Process.myUserHandle());
Adam Powellc5878612012-05-04 18:42:38 -0700768 }
769
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800770 @Override
771 protected void onRestart() {
772 super.onRestart();
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700773 if (!mRegistered) {
774 mPackageMonitor.register(this, getMainLooper(), false);
775 mRegistered = true;
776 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800777 mAdapter.handlePackagesChanged();
Matt Pietal74c6ed02019-04-18 13:38:46 -0400778 bindProfileView();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800779 }
780
781 @Override
782 protected void onStop() {
783 super.onStop();
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700784 if (mRegistered) {
785 mPackageMonitor.unregister();
786 mRegistered = false;
787 }
Wale Ogunwale9014e662016-03-19 14:55:46 -0700788 final Intent intent = getIntent();
789 if ((intent.getFlags() & FLAG_ACTIVITY_NEW_TASK) != 0 && !isVoiceInteraction()
Jorim Jaggif631ef72017-02-24 13:49:47 +0100790 && !mResolvingHome && !mRetainInOnStop) {
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700791 // This resolver is in the unusual situation where it has been
792 // launched at the top of a new task. We don't let it be added
793 // to the recent tasks shown to the user, and we need to make sure
794 // that each time we are launched we get the correct launching
795 // uid (not re-using the same resolver from an old launching uid),
796 // so we will now finish ourself since being no longer visible,
797 // the user probably can't get back to us.
798 if (!isChangingConfigurations()) {
799 finish();
800 }
801 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800802 }
803
Adam Powellc5878612012-05-04 18:42:38 -0700804 @Override
Adam Powell4c470d62015-06-19 17:46:17 -0700805 protected void onDestroy() {
806 super.onDestroy();
807 if (!isChangingConfigurations() && mPickOptionRequest != null) {
808 mPickOptionRequest.cancel();
809 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800810 if (mPostListReadyRunnable != null) {
811 getMainThreadHandler().removeCallbacks(mPostListReadyRunnable);
812 mPostListReadyRunnable = null;
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800813 }
Kang Li38a6da642017-04-05 12:30:55 -0700814 if (mAdapter != null && mAdapter.mResolverListController != null) {
815 mAdapter.mResolverListController.destroy();
816 }
Adam Powell4c470d62015-06-19 17:46:17 -0700817 }
818
819 @Override
Adam Powell9bee4662012-05-08 11:07:23 -0700820 protected void onRestoreInstanceState(Bundle savedInstanceState) {
821 super.onRestoreInstanceState(savedInstanceState);
shafik69df96322018-12-18 15:41:19 +0000822 resetButtonBar();
Adam Powell9bee4662012-05-08 11:07:23 -0700823 }
824
shafik0c7c5d52019-02-27 12:13:25 +0000825 private boolean isHttpSchemeAndViewAction(Intent intent) {
826 return (IntentFilter.SCHEME_HTTP.equals(intent.getScheme())
827 || IntentFilter.SCHEME_HTTPS.equals(intent.getScheme()))
828 && Intent.ACTION_VIEW.equals(intent.getAction());
829 }
830
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100831 private boolean hasManagedProfile() {
832 UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
833 if (userManager == null) {
834 return false;
835 }
836
837 try {
838 List<UserInfo> profiles = userManager.getProfiles(getUserId());
839 for (UserInfo userInfo : profiles) {
840 if (userInfo != null && userInfo.isManagedProfile()) {
841 return true;
842 }
843 }
844 } catch (SecurityException e) {
845 return false;
846 }
847 return false;
848 }
849
850 private boolean supportsManagedProfiles(ResolveInfo resolveInfo) {
851 try {
852 ApplicationInfo appInfo = getPackageManager().getApplicationInfo(
853 resolveInfo.activityInfo.packageName, 0 /* default flags */);
Adam Powell4c470d62015-06-19 17:46:17 -0700854 return appInfo.targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100855 } catch (NameNotFoundException e) {
856 return false;
857 }
858 }
859
Adam Powell278902c2014-07-12 18:33:22 -0700860 private void setAlwaysButtonEnabled(boolean hasValidSelection, int checkedPos,
861 boolean filtered) {
Nicolas Prevot50449882014-06-23 12:42:37 +0100862 boolean enabled = false;
863 if (hasValidSelection) {
Adam Powell278902c2014-07-12 18:33:22 -0700864 ResolveInfo ri = mAdapter.resolveInfoForPosition(checkedPos, filtered);
Hakan Seyalioglu5dbc8192017-02-24 16:16:37 -0800865 if (ri == null) {
866 Log.e(TAG, "Invalid position supplied to setAlwaysButtonEnabled");
867 return;
868 } else if (ri.targetUserId != UserHandle.USER_CURRENT) {
869 Log.e(TAG, "Attempted to set selection to resolve info for another user");
870 return;
871 } else {
Nicolas Prevot50449882014-06-23 12:42:37 +0100872 enabled = true;
873 }
Matt Pietal0d6834a2019-06-27 13:27:52 -0400874 if (mUseLayoutForBrowsables && !ri.handleAllWebDataURI) {
875 mAlwaysButton.setText(getResources()
876 .getString(R.string.activity_resolver_set_always));
877 } else {
878 mAlwaysButton.setText(getResources()
879 .getString(R.string.activity_resolver_use_always));
880 }
Nicolas Prevot50449882014-06-23 12:42:37 +0100881 }
882 mAlwaysButton.setEnabled(enabled);
883 }
884
Adam Powellc5878612012-05-04 18:42:38 -0700885 public void onButtonClick(View v) {
886 final int id = v.getId();
shafik69df96322018-12-18 15:41:19 +0000887 int which = mAdapter.hasFilteredItem()
888 ? mAdapter.getFilteredPosition()
889 : mAdapterView.getCheckedItemPosition();
890 boolean hasIndexBeenFiltered = !mAdapter.hasFilteredItem();
Matt Pietal0d6834a2019-06-27 13:27:52 -0400891 ResolveInfo ri = mAdapter.resolveInfoForPosition(which, hasIndexBeenFiltered);
Matt Pietala310c1f2019-07-03 09:12:56 -0400892 if (mUseLayoutForBrowsables
893 && !ri.handleAllWebDataURI && id == R.id.button_always) {
Matt Pietal0d6834a2019-06-27 13:27:52 -0400894 showSettingsForSelected(ri);
shafik69df96322018-12-18 15:41:19 +0000895 } else {
896 startSelected(which, id == R.id.button_always, hasIndexBeenFiltered);
897 }
898 }
899
Matt Pietal0d6834a2019-06-27 13:27:52 -0400900 private void showSettingsForSelected(ResolveInfo ri) {
shafik34064c32019-03-06 15:42:52 +0000901 Intent intent = new Intent();
Matt Pietal0d6834a2019-06-27 13:27:52 -0400902
903 final String packageName = ri.activityInfo.packageName;
904 Bundle showFragmentArgs = new Bundle();
905 showFragmentArgs.putString(EXTRA_FRAGMENT_ARG_KEY, OPEN_LINKS_COMPONENT_KEY);
906 showFragmentArgs.putString("package", packageName);
907
shafik34064c32019-03-06 15:42:52 +0000908 // For regular apps, we open the Open by Default page
Matt Pietal0d6834a2019-06-27 13:27:52 -0400909 intent.setAction(Settings.ACTION_APP_OPEN_BY_DEFAULT_SETTINGS)
910 .setData(Uri.fromParts("package", packageName, null))
911 .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT)
912 .putExtra(EXTRA_FRAGMENT_ARG_KEY, OPEN_LINKS_COMPONENT_KEY)
913 .putExtra(EXTRA_SHOW_FRAGMENT_ARGS, showFragmentArgs);
914
shafik34064c32019-03-06 15:42:52 +0000915 startActivity(intent);
Adam Powellc5878612012-05-04 18:42:38 -0700916 }
917
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800918 public void startSelected(int which, boolean always, boolean hasIndexBeenFiltered) {
Amith Yamasani07cd3512013-09-18 13:16:00 -0700919 if (isFinishing()) {
920 return;
921 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800922 ResolveInfo ri = mAdapter.resolveInfoForPosition(which, hasIndexBeenFiltered);
Sander Alewijnse86d35ba2015-02-04 15:14:53 +0000923 if (mResolvingHome && hasManagedProfile() && !supportsManagedProfiles(ri)) {
924 Toast.makeText(this, String.format(getResources().getString(
925 com.android.internal.R.string.activity_resolver_work_profiles_support),
926 ri.activityInfo.loadLabel(getPackageManager()).toString()),
927 Toast.LENGTH_LONG).show();
928 return;
929 }
930
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800931 TargetInfo target = mAdapter.targetInfoForPosition(which, hasIndexBeenFiltered);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800932 if (target == null) {
933 return;
934 }
Adam Powell2ed547e2015-04-29 18:45:04 -0700935 if (onTargetSelected(target, always)) {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800936 if (always && mSupportsAlwaysUseOption) {
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100937 MetricsLogger.action(
938 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_ALWAYS);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800939 } else if (mSupportsAlwaysUseOption) {
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100940 MetricsLogger.action(
941 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_JUST_ONCE);
942 } else {
943 MetricsLogger.action(
944 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_TAP);
945 }
946 MetricsLogger.action(this, mAdapter.hasFilteredItem()
947 ? MetricsProto.MetricsEvent.ACTION_HIDE_APP_DISAMBIG_APP_FEATURED
948 : MetricsProto.MetricsEvent.ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED);
Adam Powell2ed547e2015-04-29 18:45:04 -0700949 finish();
950 }
Mike Lockwood02eb8742011-02-27 09:10:37 -0800951 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800952
Adam Powelle49d9392014-07-17 18:45:19 -0700953 /**
954 * Replace me in subclasses!
955 */
Nicolas Prevot0e2b73f2014-10-27 10:06:11 +0000956 public Intent getReplacementIntent(ActivityInfo aInfo, Intent defIntent) {
Adam Powelle49d9392014-07-17 18:45:19 -0700957 return defIntent;
958 }
959
Adam Powell2ed547e2015-04-29 18:45:04 -0700960 protected boolean onTargetSelected(TargetInfo target, boolean alwaysCheck) {
Adam Powell24428412015-04-01 17:19:56 -0700961 final ResolveInfo ri = target.getResolveInfo();
962 final Intent intent = target != null ? target.getResolvedIntent() : null;
963
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800964 if (intent != null && (mSupportsAlwaysUseOption || mAdapter.hasFilteredItem())
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800965 && mAdapter.mUnfilteredResolveList != null) {
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700966 // Build a reasonable intent filter, based on what matched.
967 IntentFilter filter = new IntentFilter();
Henrik Engström3277cf12014-07-17 12:18:29 +0200968 Intent filterIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969
Henrik Engström3277cf12014-07-17 12:18:29 +0200970 if (intent.getSelector() != null) {
971 filterIntent = intent.getSelector();
972 } else {
973 filterIntent = intent;
974 }
975
976 String action = filterIntent.getAction();
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800977 if (action != null) {
978 filter.addAction(action);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800979 }
Henrik Engström3277cf12014-07-17 12:18:29 +0200980 Set<String> categories = filterIntent.getCategories();
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700981 if (categories != null) {
982 for (String cat : categories) {
983 filter.addCategory(cat);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800984 }
985 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700986 filter.addCategory(Intent.CATEGORY_DEFAULT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987
Adam Powell24428412015-04-01 17:19:56 -0700988 int cat = ri.match & IntentFilter.MATCH_CATEGORY_MASK;
Henrik Engström3277cf12014-07-17 12:18:29 +0200989 Uri data = filterIntent.getData();
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700990 if (cat == IntentFilter.MATCH_CATEGORY_TYPE) {
Henrik Engström3277cf12014-07-17 12:18:29 +0200991 String mimeType = filterIntent.resolveType(this);
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700992 if (mimeType != null) {
993 try {
994 filter.addDataType(mimeType);
995 } catch (IntentFilter.MalformedMimeTypeException e) {
996 Log.w("ResolverActivity", e);
997 filter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800998 }
999 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001000 }
1001 if (data != null && data.getScheme() != null) {
1002 // We need the data specification if there was no type,
1003 // OR if the scheme is not one of our magical "file:"
1004 // or "content:" schemes (see IntentFilter for the reason).
1005 if (cat != IntentFilter.MATCH_CATEGORY_TYPE
1006 || (!"file".equals(data.getScheme())
1007 && !"content".equals(data.getScheme()))) {
1008 filter.addDataScheme(data.getScheme());
1009
1010 // Look through the resolved filter to determine which part
1011 // of it matched the original Intent.
1012 Iterator<PatternMatcher> pIt = ri.filter.schemeSpecificPartsIterator();
1013 if (pIt != null) {
1014 String ssp = data.getSchemeSpecificPart();
1015 while (ssp != null && pIt.hasNext()) {
1016 PatternMatcher p = pIt.next();
1017 if (p.match(ssp)) {
1018 filter.addDataSchemeSpecificPart(p.getPath(), p.getType());
1019 break;
1020 }
Dianne Hackborndf1c0bf2013-06-12 16:21:38 -07001021 }
1022 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001023 Iterator<IntentFilter.AuthorityEntry> aIt = ri.filter.authoritiesIterator();
1024 if (aIt != null) {
1025 while (aIt.hasNext()) {
1026 IntentFilter.AuthorityEntry a = aIt.next();
1027 if (a.match(data) >= 0) {
1028 int port = a.getPort();
1029 filter.addDataAuthority(a.getHost(),
1030 port >= 0 ? Integer.toString(port) : null);
1031 break;
1032 }
1033 }
1034 }
1035 pIt = ri.filter.pathsIterator();
1036 if (pIt != null) {
1037 String path = data.getPath();
1038 while (path != null && pIt.hasNext()) {
1039 PatternMatcher p = pIt.next();
1040 if (p.match(path)) {
1041 filter.addDataPath(p.getPath(), p.getType());
1042 break;
1043 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001044 }
1045 }
1046 }
1047 }
1048
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001049 if (filter != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001050 final int N = mAdapter.mUnfilteredResolveList.size();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001051 ComponentName[] set;
1052 // If we don't add back in the component for forwarding the intent to a managed
1053 // profile, the preferred activity may not be updated correctly (as the set of
1054 // components we tell it we knew about will have changed).
1055 final boolean needToAddBackProfileForwardingComponent
1056 = mAdapter.mOtherProfile != null;
1057 if (!needToAddBackProfileForwardingComponent) {
1058 set = new ComponentName[N];
1059 } else {
1060 set = new ComponentName[N + 1];
1061 }
1062
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001063 int bestMatch = 0;
1064 for (int i=0; i<N; i++) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001065 ResolveInfo r = mAdapter.mUnfilteredResolveList.get(i).getResolveInfoAt(0);
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001066 set[i] = new ComponentName(r.activityInfo.packageName,
1067 r.activityInfo.name);
1068 if (r.match > bestMatch) bestMatch = r.match;
1069 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001070
1071 if (needToAddBackProfileForwardingComponent) {
1072 set[N] = mAdapter.mOtherProfile.getResolvedComponentName();
1073 final int otherProfileMatch = mAdapter.mOtherProfile.getResolveInfo().match;
1074 if (otherProfileMatch > bestMatch) bestMatch = otherProfileMatch;
1075 }
1076
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001077 if (alwaysCheck) {
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001078 final int userId = getUserId();
1079 final PackageManager pm = getPackageManager();
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001080
1081 // Set the preferred Activity
1082 pm.addPreferredActivity(filter, bestMatch, set, intent.getComponent());
1083
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001084 if (ri.handleAllWebDataURI) {
1085 // Set default Browser if needed
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001086 final String packageName = pm.getDefaultBrowserPackageNameAsUser(userId);
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001087 if (TextUtils.isEmpty(packageName)) {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001088 pm.setDefaultBrowserPackageNameAsUser(ri.activityInfo.packageName, userId);
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001089 }
1090 } else {
1091 // Update Domain Verification status
1092 ComponentName cn = intent.getComponent();
1093 String packageName = cn.getPackageName();
1094 String dataScheme = (data != null) ? data.getScheme() : null;
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001095
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001096 boolean isHttpOrHttps = (dataScheme != null) &&
1097 (dataScheme.equals(IntentFilter.SCHEME_HTTP) ||
1098 dataScheme.equals(IntentFilter.SCHEME_HTTPS));
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001099
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001100 boolean isViewAction = (action != null) && action.equals(Intent.ACTION_VIEW);
1101 boolean hasCategoryBrowsable = (categories != null) &&
1102 categories.contains(Intent.CATEGORY_BROWSABLE);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001103
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001104 if (isHttpOrHttps && isViewAction && hasCategoryBrowsable) {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001105 pm.updateIntentVerificationStatusAsUser(packageName,
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001106 PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS,
1107 userId);
1108 }
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001109 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001110 } else {
1111 try {
Hakan Seyalioglu9149dca2017-01-17 12:20:01 -08001112 mAdapter.mResolverListController.setLastChosen(intent, filter, bestMatch);
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001113 } catch (RemoteException re) {
1114 Log.d(TAG, "Error calling setLastChosenActivity\n" + re);
1115 }
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -07001116 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001117 }
1118 }
1119
Adam Powell24428412015-04-01 17:19:56 -07001120 if (target != null) {
1121 safelyStartActivity(target);
Matt Pietala4b30072019-04-04 13:44:36 -04001122
1123 // Rely on the ActivityManager to pop up a dialog regarding app suspension
1124 // and return false
1125 if (target.isSuspended()) {
1126 return false;
1127 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001128 }
Matt Pietala4b30072019-04-04 13:44:36 -04001129
Adam Powell2ed547e2015-04-29 18:45:04 -07001130 return true;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001131 }
1132
Adam Powell23882512016-01-29 10:21:00 -08001133 public void safelyStartActivity(TargetInfo cti) {
Jeff Sharkey2b9eb892016-02-16 09:21:51 -07001134 // We're dispatching intents that might be coming from legacy apps, so
1135 // don't kill ourselves.
1136 StrictMode.disableDeathOnFileUriExposure();
1137 try {
1138 safelyStartActivityInternal(cti);
1139 } finally {
1140 StrictMode.enableDeathOnFileUriExposure();
1141 }
1142 }
1143
1144 private void safelyStartActivityInternal(TargetInfo cti) {
Sander Alewijnsef6545332014-10-31 12:39:02 +00001145 // If needed, show that intent is forwarded
1146 // from managed profile to owner or other way around.
1147 if (mProfileSwitchMessageId != -1) {
1148 Toast.makeText(this, getString(mProfileSwitchMessageId), Toast.LENGTH_LONG).show();
1149 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001150 if (!mSafeForwardingMode) {
Adam Powell24428412015-04-01 17:19:56 -07001151 if (cti.start(this, null)) {
1152 onActivityStarted(cti);
1153 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001154 return;
1155 }
1156 try {
Adam Powell24428412015-04-01 17:19:56 -07001157 if (cti.startAsCaller(this, null, UserHandle.USER_NULL)) {
1158 onActivityStarted(cti);
1159 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001160 } catch (RuntimeException e) {
1161 String launchedFromPackage;
1162 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001163 launchedFromPackage = ActivityTaskManager.getService().getLaunchedFromPackage(
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001164 getActivityToken());
1165 } catch (RemoteException e2) {
1166 launchedFromPackage = "??";
1167 }
1168 Slog.wtf(TAG, "Unable to launch as uid " + mLaunchedFromUid
1169 + " package " + launchedFromPackage + ", while running in "
1170 + ActivityThread.currentProcessName(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001171 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001172 }
1173
Alison Cichowlas3e340502018-08-07 17:15:01 -04001174
1175 boolean startAsCallerImpl(Intent intent, Bundle options, boolean ignoreTargetSecurity,
1176 int userId) {
1177 // Pass intent to delegate chooser activity with permission token.
1178 // TODO: This should move to a trampoline Activity in the system when the ChooserActivity
1179 // moves into systemui
1180 try {
1181 // TODO: Once this is a small springboard activity, it can move off the UI process
1182 // and we can move the request method to ActivityManagerInternal.
1183 IBinder permissionToken = ActivityTaskManager.getService()
1184 .requestStartActivityPermissionToken(getActivityToken());
1185 final Intent chooserIntent = new Intent();
1186 final ComponentName delegateActivity = ComponentName.unflattenFromString(
1187 Resources.getSystem().getString(R.string.config_chooserActivity));
1188 chooserIntent.setClassName(delegateActivity.getPackageName(),
1189 delegateActivity.getClassName());
1190 chooserIntent.putExtra(ActivityTaskManager.EXTRA_PERMISSION_TOKEN, permissionToken);
1191
1192 // TODO: These extras will change as chooser activity moves into systemui
1193 chooserIntent.putExtra(Intent.EXTRA_INTENT, intent);
1194 chooserIntent.putExtra(ActivityTaskManager.EXTRA_OPTIONS, options);
1195 chooserIntent.putExtra(ActivityTaskManager.EXTRA_IGNORE_TARGET_SECURITY,
1196 ignoreTargetSecurity);
1197 chooserIntent.putExtra(Intent.EXTRA_USER_ID, userId);
Alison Cichowlas7b6f3b62018-12-07 09:06:57 -05001198 chooserIntent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT
1199 | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001200 startActivity(chooserIntent);
1201 } catch (RemoteException e) {
1202 Log.e(TAG, e.toString());
1203 }
1204 return true;
1205 }
1206
Adam Powell23882512016-01-29 10:21:00 -08001207 public void onActivityStarted(TargetInfo cti) {
Adam Powell0b3c1122014-10-09 12:50:14 -07001208 // Do nothing
1209 }
1210
Adam Powell23882512016-01-29 10:21:00 -08001211 public boolean shouldGetActivityMetadata() {
Adam Powell24428412015-04-01 17:19:56 -07001212 return false;
1213 }
1214
Adam Powell23882512016-01-29 10:21:00 -08001215 public boolean shouldAutoLaunchSingleChoice(TargetInfo target) {
Matt Pietala4b30072019-04-04 13:44:36 -04001216 return !target.isSuspended();
Adam Powell39e94eb2015-09-08 17:01:49 -07001217 }
1218
Adam Powell23882512016-01-29 10:21:00 -08001219 public void showTargetDetails(ResolveInfo ri) {
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001220 Intent in = new Intent().setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)
Adam Powell0fc5b2b2012-07-18 18:20:29 -07001221 .setData(Uri.fromParts("package", ri.activityInfo.packageName, null))
Adam Powell24428412015-04-01 17:19:56 -07001222 .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
Amith Yamasani203a2f42012-10-03 20:16:40 -07001223 startActivity(in);
Adam Powellc5878612012-05-04 18:42:38 -07001224 }
1225
Adam Powell23882512016-01-29 10:21:00 -08001226 public ResolveListAdapter createAdapter(Context context, List<Intent> payloadIntents,
Adam Powell7d758002015-05-06 17:49:36 -07001227 Intent[] initialIntents, List<ResolveInfo> rList, int launchedFromUid,
1228 boolean filterLastUsed) {
1229 return new ResolveListAdapter(context, payloadIntents, initialIntents, rList,
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001230 launchedFromUid, filterLastUsed, createListController());
1231 }
1232
1233 @VisibleForTesting
1234 protected ResolverListController createListController() {
1235 return new ResolverListController(
1236 this,
1237 mPm,
1238 getTargetIntent(),
1239 getReferrerPackageName(),
1240 mLaunchedFromUid);
Adam Powell88831a22014-11-20 18:17:00 -08001241 }
1242
Adam Powell39e94eb2015-09-08 17:01:49 -07001243 /**
1244 * Returns true if the activity is finishing and creation should halt
1245 */
Adam Powell23882512016-01-29 10:21:00 -08001246 public boolean configureContentView(List<Intent> payloadIntents, Intent[] initialIntents,
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001247 List<ResolveInfo> rList) {
Dianne Hackborn57dd7372015-07-27 18:11:14 -07001248 // The last argument of createAdapter is whether to do special handling
1249 // of the last used choice to highlight it in the list. We need to always
1250 // turn this off when running under voice interaction, since it results in
1251 // a more complicated UI that the current voice interaction flow is not able
1252 // to handle.
Adam Powell7d758002015-05-06 17:49:36 -07001253 mAdapter = createAdapter(this, payloadIntents, initialIntents, rList,
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001254 mLaunchedFromUid, mSupportsAlwaysUseOption && !isVoiceInteraction());
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001255 boolean rebuildCompleted = mAdapter.rebuildList();
Adam Powell7d758002015-05-06 17:49:36 -07001256
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001257 if (useLayoutWithDefault()) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001258 mLayoutId = R.layout.resolver_list_with_default;
Adam Powell7d758002015-05-06 17:49:36 -07001259 } else {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001260 mLayoutId = getLayoutResource();
Adam Powell7d758002015-05-06 17:49:36 -07001261 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001262 setContentView(mLayoutId);
Adam Powell7d758002015-05-06 17:49:36 -07001263
Adam Powell50077352015-05-26 18:01:55 -07001264 int count = mAdapter.getUnfilteredCount();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001265
1266 // We only rebuild asynchronously when we have multiple elements to sort. In the case where
1267 // we're already done, we can check if we should auto-launch immediately.
1268 if (rebuildCompleted) {
1269 if (count == 1 && mAdapter.getOtherProfile() == null) {
1270 // Only one target, so we're a candidate to auto-launch!
1271 final TargetInfo target = mAdapter.targetInfoForPosition(0, false);
1272 if (shouldAutoLaunchSingleChoice(target)) {
1273 safelyStartActivity(target);
1274 mPackageMonitor.unregister();
1275 mRegistered = false;
1276 finish();
1277 return true;
1278 }
Jeff Sharkeycc2ae6b42015-09-29 13:04:46 -07001279 }
1280 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001281
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001282
Alan Viverette51efddb2017-04-05 10:00:01 -04001283 mAdapterView = findViewById(R.id.resolver_list);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001284
1285 if (count == 0 && mAdapter.mPlaceholderCount == 0) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001286 final TextView emptyView = findViewById(R.id.empty);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001287 emptyView.setVisibility(View.VISIBLE);
Adam Powell7d758002015-05-06 17:49:36 -07001288 mAdapterView.setVisibility(View.GONE);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001289 } else {
1290 mAdapterView.setVisibility(View.VISIBLE);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001291 onPrepareAdapterView(mAdapterView, mAdapter);
Adam Powell7d758002015-05-06 17:49:36 -07001292 }
Adam Powell39e94eb2015-09-08 17:01:49 -07001293 return false;
Adam Powell7d758002015-05-06 17:49:36 -07001294 }
1295
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001296 public void onPrepareAdapterView(AbsListView adapterView, ResolveListAdapter adapter) {
Adam Powell7d758002015-05-06 17:49:36 -07001297 final boolean useHeader = adapter.hasFilteredItem();
1298 final ListView listView = adapterView instanceof ListView ? (ListView) adapterView : null;
1299
1300 adapterView.setAdapter(mAdapter);
1301
1302 final ItemClickListener listener = new ItemClickListener();
1303 adapterView.setOnItemClickListener(listener);
1304 adapterView.setOnItemLongClickListener(listener);
1305
shafik69df96322018-12-18 15:41:19 +00001306 if (mSupportsAlwaysUseOption || mUseLayoutForBrowsables) {
Adam Powell7d758002015-05-06 17:49:36 -07001307 listView.setChoiceMode(AbsListView.CHOICE_MODE_SINGLE);
1308 }
1309
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001310 // In case this method is called again (due to activity recreation), avoid adding a new
1311 // header if one is already present.
1312 if (useHeader && listView != null && listView.getHeaderViewsCount() == 0) {
Adam Powell7d758002015-05-06 17:49:36 -07001313 listView.addHeaderView(LayoutInflater.from(this).inflate(
1314 R.layout.resolver_different_item_header, listView, false));
1315 }
Adam Powell24428412015-04-01 17:19:56 -07001316 }
1317
Matt Pietal26038402019-01-08 07:29:34 -05001318 /**
1319 * Configure the area above the app selection list (title, content preview, etc).
1320 */
1321 public void setHeader() {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001322 if (mAdapter.getCount() == 0 && mAdapter.mPlaceholderCount == 0) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001323 final TextView titleView = findViewById(R.id.title);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001324 if (titleView != null) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001325 titleView.setVisibility(View.GONE);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001326 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001327 }
1328
1329 CharSequence title = mTitle != null
1330 ? mTitle
shafik69df96322018-12-18 15:41:19 +00001331 : getTitleForAction(getTargetIntent(), mDefaultTitleResId);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001332
1333 if (!TextUtils.isEmpty(title)) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001334 final TextView titleView = findViewById(R.id.title);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001335 if (titleView != null) {
1336 titleView.setText(title);
1337 }
1338 setTitle(title);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001339 }
1340
Alan Viverette51efddb2017-04-05 10:00:01 -04001341 final ImageView iconView = findViewById(R.id.icon);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001342 final DisplayResolveInfo iconInfo = mAdapter.getFilteredItem();
1343 if (iconView != null && iconInfo != null) {
Matt Pietalaf044ae2019-03-29 06:53:53 -04001344 new LoadIconTask(iconInfo, iconView).execute();
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001345 }
1346 }
1347
shafik69df96322018-12-18 15:41:19 +00001348 private void resetButtonBar() {
1349 if (!mSupportsAlwaysUseOption && !mUseLayoutForBrowsables) {
1350 return;
1351 }
1352 final ViewGroup buttonLayout = findViewById(R.id.button_bar);
1353 if (buttonLayout != null) {
1354 buttonLayout.setVisibility(View.VISIBLE);
Matt Pietal800136a2019-05-08 07:46:39 -04001355 int inset = mSystemWindowInsets != null ? mSystemWindowInsets.bottom : 0;
1356 buttonLayout.setPadding(buttonLayout.getPaddingLeft(), buttonLayout.getPaddingTop(),
Matt Pietal33b0ac12019-05-24 13:47:18 -04001357 buttonLayout.getPaddingRight(), getResources().getDimensionPixelSize(
1358 R.dimen.resolver_button_bar_spacing) + inset);
Matt Pietal800136a2019-05-08 07:46:39 -04001359
shafik69df96322018-12-18 15:41:19 +00001360 mOnceButton = (Button) buttonLayout.findViewById(R.id.button_once);
shafik69df96322018-12-18 15:41:19 +00001361 mAlwaysButton = (Button) buttonLayout.findViewById(R.id.button_always);
1362
Matt Pietal0d6834a2019-06-27 13:27:52 -04001363 resetAlwaysOrOnceButtonBar();
shafik69df96322018-12-18 15:41:19 +00001364 } else {
1365 Log.e(TAG, "Layout unexpectedly does not have a button bar");
1366 }
1367 }
1368
shafik69df96322018-12-18 15:41:19 +00001369 private void resetAlwaysOrOnceButtonBar() {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001370 if (useLayoutWithDefault()
1371 && mAdapter.getFilteredPosition() != ListView.INVALID_POSITION) {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001372 setAlwaysButtonEnabled(true, mAdapter.getFilteredPosition(), false);
1373 mOnceButton.setEnabled(true);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001374 return;
1375 }
1376
1377 // When the items load in, if an item was already selected, enable the buttons
1378 if (mAdapterView != null
1379 && mAdapterView.getCheckedItemPosition() != ListView.INVALID_POSITION) {
1380 setAlwaysButtonEnabled(true, mAdapterView.getCheckedItemPosition(), true);
1381 mOnceButton.setEnabled(true);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001382 }
1383 }
1384
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001385 private boolean useLayoutWithDefault() {
1386 return mSupportsAlwaysUseOption && mAdapter.hasFilteredItem();
1387 }
1388
Adam Powellc412be62015-06-24 13:54:10 -07001389 /**
Jorim Jaggif631ef72017-02-24 13:49:47 +01001390 * If {@code retainInOnStop} is set to true, we will not finish ourselves when onStop gets
1391 * called and we are launched in a new task.
1392 */
1393 protected void setRetainInOnStop(boolean retainInOnStop) {
1394 mRetainInOnStop = retainInOnStop;
1395 }
1396
1397 /**
Adam Powellc412be62015-06-24 13:54:10 -07001398 * Check a simple match for the component of two ResolveInfos.
1399 */
1400 static boolean resolveInfoMatch(ResolveInfo lhs, ResolveInfo rhs) {
1401 return lhs == null ? rhs == null
1402 : lhs.activityInfo == null ? rhs.activityInfo == null
1403 : Objects.equals(lhs.activityInfo.name, rhs.activityInfo.name)
1404 && Objects.equals(lhs.activityInfo.packageName, rhs.activityInfo.packageName);
1405 }
1406
Adam Powell23882512016-01-29 10:21:00 -08001407 public final class DisplayResolveInfo implements TargetInfo {
Adam Powell24428412015-04-01 17:19:56 -07001408 private final ResolveInfo mResolveInfo;
1409 private final CharSequence mDisplayLabel;
1410 private Drawable mDisplayIcon;
Adam Powell00f4aad2015-09-17 13:38:16 -07001411 private Drawable mBadge;
Adam Powell24428412015-04-01 17:19:56 -07001412 private final CharSequence mExtendedInfo;
1413 private final Intent mResolvedIntent;
Adam Powell2ed547e2015-04-29 18:45:04 -07001414 private final List<Intent> mSourceIntents = new ArrayList<>();
Matt Pietala4b30072019-04-04 13:44:36 -04001415 private boolean mIsSuspended;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001416
Adam Powell23882512016-01-29 10:21:00 -08001417 public DisplayResolveInfo(Intent originalIntent, ResolveInfo pri, CharSequence pLabel,
Dianne Hackborneb034652009-09-07 00:49:58 -07001418 CharSequence pInfo, Intent pOrigIntent) {
Adam Powell2ed547e2015-04-29 18:45:04 -07001419 mSourceIntents.add(originalIntent);
Adam Powell24428412015-04-01 17:19:56 -07001420 mResolveInfo = pri;
1421 mDisplayLabel = pLabel;
1422 mExtendedInfo = pInfo;
1423
1424 final Intent intent = new Intent(pOrigIntent != null ? pOrigIntent :
Adam Powell2ed547e2015-04-29 18:45:04 -07001425 getReplacementIntent(pri.activityInfo, getTargetIntent()));
Adam Powell24428412015-04-01 17:19:56 -07001426 intent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT
1427 | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
1428 final ActivityInfo ai = mResolveInfo.activityInfo;
1429 intent.setComponent(new ComponentName(ai.applicationInfo.packageName, ai.name));
1430
Matt Pietala4b30072019-04-04 13:44:36 -04001431 mIsSuspended = (ai.applicationInfo.flags & ApplicationInfo.FLAG_SUSPENDED) != 0;
1432
Adam Powell24428412015-04-01 17:19:56 -07001433 mResolvedIntent = intent;
1434 }
1435
Adam Powell2ed547e2015-04-29 18:45:04 -07001436 private DisplayResolveInfo(DisplayResolveInfo other, Intent fillInIntent, int flags) {
1437 mSourceIntents.addAll(other.getAllSourceIntents());
1438 mResolveInfo = other.mResolveInfo;
1439 mDisplayLabel = other.mDisplayLabel;
1440 mDisplayIcon = other.mDisplayIcon;
1441 mExtendedInfo = other.mExtendedInfo;
1442 mResolvedIntent = new Intent(other.mResolvedIntent);
1443 mResolvedIntent.fillIn(fillInIntent, flags);
1444 }
1445
Adam Powell24428412015-04-01 17:19:56 -07001446 public ResolveInfo getResolveInfo() {
1447 return mResolveInfo;
1448 }
1449
1450 public CharSequence getDisplayLabel() {
1451 return mDisplayLabel;
1452 }
1453
1454 public Drawable getDisplayIcon() {
1455 return mDisplayIcon;
1456 }
1457
Alan Viverettece5d92c2015-07-31 16:46:56 -04001458 @Override
Adam Powell2ed547e2015-04-29 18:45:04 -07001459 public TargetInfo cloneFilledIn(Intent fillInIntent, int flags) {
1460 return new DisplayResolveInfo(this, fillInIntent, flags);
1461 }
1462
1463 @Override
1464 public List<Intent> getAllSourceIntents() {
1465 return mSourceIntents;
1466 }
1467
1468 public void addAlternateSourceIntent(Intent alt) {
1469 mSourceIntents.add(alt);
1470 }
1471
Adam Powell24428412015-04-01 17:19:56 -07001472 public void setDisplayIcon(Drawable icon) {
1473 mDisplayIcon = icon;
1474 }
1475
1476 public boolean hasDisplayIcon() {
1477 return mDisplayIcon != null;
1478 }
1479
1480 public CharSequence getExtendedInfo() {
1481 return mExtendedInfo;
1482 }
1483
1484 public Intent getResolvedIntent() {
1485 return mResolvedIntent;
1486 }
1487
1488 @Override
1489 public ComponentName getResolvedComponentName() {
1490 return new ComponentName(mResolveInfo.activityInfo.packageName,
1491 mResolveInfo.activityInfo.name);
1492 }
1493
1494 @Override
1495 public boolean start(Activity activity, Bundle options) {
1496 activity.startActivity(mResolvedIntent, options);
1497 return true;
1498 }
1499
1500 @Override
Alison Cichowlas3e340502018-08-07 17:15:01 -04001501 public boolean startAsCaller(ResolverActivity activity, Bundle options, int userId) {
Alison Cichowlas4691ed42018-11-13 15:59:55 -05001502 if (mEnableChooserDelegate) {
1503 return activity.startAsCallerImpl(mResolvedIntent, options, false, userId);
1504 } else {
1505 activity.startActivityAsCaller(mResolvedIntent, options, null, false, userId);
1506 return true;
1507 }
Adam Powell24428412015-04-01 17:19:56 -07001508 }
1509
1510 @Override
1511 public boolean startAsUser(Activity activity, Bundle options, UserHandle user) {
1512 activity.startActivityAsUser(mResolvedIntent, options, user);
1513 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001514 }
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001515
Matt Pietala4b30072019-04-04 13:44:36 -04001516 public boolean isSuspended() {
1517 return mIsSuspended;
1518 }
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001519 }
1520
1521 List<DisplayResolveInfo> getDisplayList() {
1522 return mAdapter.mDisplayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001523 }
1524
Adam Powell24428412015-04-01 17:19:56 -07001525 /**
1526 * A single target as represented in the chooser.
1527 */
1528 public interface TargetInfo {
1529 /**
1530 * Get the resolved intent that represents this target. Note that this may not be the
1531 * intent that will be launched by calling one of the <code>start</code> methods provided;
1532 * this is the intent that will be credited with the launch.
1533 *
1534 * @return the resolved intent for this target
1535 */
Adam Powell23882512016-01-29 10:21:00 -08001536 Intent getResolvedIntent();
Adam Powell24428412015-04-01 17:19:56 -07001537
1538 /**
1539 * Get the resolved component name that represents this target. Note that this may not
1540 * be the component that will be directly launched by calling one of the <code>start</code>
1541 * methods provided; this is the component that will be credited with the launch.
1542 *
1543 * @return the resolved ComponentName for this target
1544 */
Adam Powell23882512016-01-29 10:21:00 -08001545 ComponentName getResolvedComponentName();
Adam Powell24428412015-04-01 17:19:56 -07001546
1547 /**
1548 * Start the activity referenced by this target.
1549 *
1550 * @param activity calling Activity performing the launch
1551 * @param options ActivityOptions bundle
1552 * @return true if the start completed successfully
1553 */
Adam Powell23882512016-01-29 10:21:00 -08001554 boolean start(Activity activity, Bundle options);
Adam Powell24428412015-04-01 17:19:56 -07001555
1556 /**
1557 * Start the activity referenced by this target as if the ResolverActivity's caller
1558 * was performing the start operation.
1559 *
1560 * @param activity calling Activity (actually) performing the launch
1561 * @param options ActivityOptions bundle
1562 * @param userId userId to start as or {@link UserHandle#USER_NULL} for activity's caller
1563 * @return true if the start completed successfully
1564 */
Alison Cichowlas3e340502018-08-07 17:15:01 -04001565 boolean startAsCaller(ResolverActivity activity, Bundle options, int userId);
Adam Powell24428412015-04-01 17:19:56 -07001566
1567 /**
1568 * Start the activity referenced by this target as a given user.
1569 *
1570 * @param activity calling activity performing the launch
1571 * @param options ActivityOptions bundle
1572 * @param user handle for the user to start the activity as
1573 * @return true if the start completed successfully
1574 */
Adam Powell23882512016-01-29 10:21:00 -08001575 boolean startAsUser(Activity activity, Bundle options, UserHandle user);
Adam Powell24428412015-04-01 17:19:56 -07001576
1577 /**
1578 * Return the ResolveInfo about how and why this target matched the original query
1579 * for available targets.
1580 *
1581 * @return ResolveInfo representing this target's match
1582 */
Adam Powell23882512016-01-29 10:21:00 -08001583 ResolveInfo getResolveInfo();
Adam Powell24428412015-04-01 17:19:56 -07001584
1585 /**
1586 * Return the human-readable text label for this target.
1587 *
1588 * @return user-visible target label
1589 */
Adam Powell23882512016-01-29 10:21:00 -08001590 CharSequence getDisplayLabel();
Adam Powell24428412015-04-01 17:19:56 -07001591
1592 /**
1593 * Return any extended info for this target. This may be used to disambiguate
1594 * otherwise identical targets.
1595 *
1596 * @return human-readable disambig string or null if none present
1597 */
Adam Powell23882512016-01-29 10:21:00 -08001598 CharSequence getExtendedInfo();
Adam Powell24428412015-04-01 17:19:56 -07001599
1600 /**
Mike Digman9c4ae502019-03-19 17:02:25 -07001601 * @return The drawable that should be used to represent this target including badge
Adam Powell24428412015-04-01 17:19:56 -07001602 */
Adam Powell23882512016-01-29 10:21:00 -08001603 Drawable getDisplayIcon();
Adam Powell2ed547e2015-04-29 18:45:04 -07001604
1605 /**
1606 * Clone this target with the given fill-in information.
1607 */
Adam Powell23882512016-01-29 10:21:00 -08001608 TargetInfo cloneFilledIn(Intent fillInIntent, int flags);
Adam Powell2ed547e2015-04-29 18:45:04 -07001609
1610 /**
1611 * @return the list of supported source intents deduped against this single target
1612 */
Adam Powell23882512016-01-29 10:21:00 -08001613 List<Intent> getAllSourceIntents();
Matt Pietala4b30072019-04-04 13:44:36 -04001614
1615 /**
1616 * @return true if this target can be selected by the user
1617 */
1618 boolean isSuspended();
Adam Powell24428412015-04-01 17:19:56 -07001619 }
1620
Adam Powell23882512016-01-29 10:21:00 -08001621 public class ResolveListAdapter extends BaseAdapter {
Adam Powell7d758002015-05-06 17:49:36 -07001622 private final List<Intent> mIntents;
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001623 private final Intent[] mInitialIntents;
1624 private final List<ResolveInfo> mBaseResolveList;
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001625 protected ResolveInfo mLastChosen;
Adam Powell88831a22014-11-20 18:17:00 -08001626 private DisplayResolveInfo mOtherProfile;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001627 private ResolverListController mResolverListController;
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001628 private int mPlaceholderCount;
Matt Pietal0d6834a2019-06-27 13:27:52 -04001629 private boolean mAllTargetsAreBrowsers = false;
Adam Powell24428412015-04-01 17:19:56 -07001630
1631 protected final LayoutInflater mInflater;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001632
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001633 // This one is the list that the Adapter will actually present.
Adam Powell2ed547e2015-04-29 18:45:04 -07001634 List<DisplayResolveInfo> mDisplayList;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001635 List<ResolvedComponentInfo> mUnfilteredResolveList;
Dianne Hackborn6d8dfbd2013-09-23 17:38:51 -07001636
Adam Powell278902c2014-07-12 18:33:22 -07001637 private int mLastChosenPosition = -1;
1638 private boolean mFilterLastUsed;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001639
Adam Powell7d758002015-05-06 17:49:36 -07001640 public ResolveListAdapter(Context context, List<Intent> payloadIntents,
1641 Intent[] initialIntents, List<ResolveInfo> rList, int launchedFromUid,
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001642 boolean filterLastUsed,
1643 ResolverListController resolverListController) {
Adam Powell7d758002015-05-06 17:49:36 -07001644 mIntents = payloadIntents;
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001645 mInitialIntents = initialIntents;
1646 mBaseResolveList = rList;
Dianne Hackborn5320eb82012-05-18 12:05:04 -07001647 mLaunchedFromUid = launchedFromUid;
Adam Powelle9414d92014-07-05 17:44:18 -07001648 mInflater = LayoutInflater.from(context);
Adam Powell2ed547e2015-04-29 18:45:04 -07001649 mDisplayList = new ArrayList<>();
Adam Powell278902c2014-07-12 18:33:22 -07001650 mFilterLastUsed = filterLastUsed;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001651 mResolverListController = resolverListController;
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001652 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001653
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001654 public void handlePackagesChanged() {
1655 rebuildList();
Esteban Talavera6de72662014-12-11 17:54:07 +00001656 if (getCount() == 0) {
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001657 // We no longer have any items... just finish the activity.
1658 finish();
Adam Powellc5878612012-05-04 18:42:38 -07001659 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001660 }
1661
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001662 public void setPlaceholderCount(int count) {
1663 mPlaceholderCount = count;
1664 }
1665
Sumir Katariadb688af2017-05-10 17:33:47 -07001666 public int getPlaceholderCount() { return mPlaceholderCount; }
1667
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001668 @Nullable
Adam Powell278902c2014-07-12 18:33:22 -07001669 public DisplayResolveInfo getFilteredItem() {
1670 if (mFilterLastUsed && mLastChosenPosition >= 0) {
1671 // Not using getItem since it offsets to dodge this position for the list
Adam Powell2ed547e2015-04-29 18:45:04 -07001672 return mDisplayList.get(mLastChosenPosition);
Adam Powell278902c2014-07-12 18:33:22 -07001673 }
1674 return null;
1675 }
1676
Adam Powell88831a22014-11-20 18:17:00 -08001677 public DisplayResolveInfo getOtherProfile() {
1678 return mOtherProfile;
1679 }
1680
Adam Powell278902c2014-07-12 18:33:22 -07001681 public int getFilteredPosition() {
1682 if (mFilterLastUsed && mLastChosenPosition >= 0) {
1683 return mLastChosenPosition;
1684 }
1685 return AbsListView.INVALID_POSITION;
1686 }
1687
1688 public boolean hasFilteredItem() {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001689 return mFilterLastUsed && mLastChosen != null;
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -07001690 }
1691
Adam Powella182e452015-07-06 16:57:56 -07001692 public float getScore(DisplayResolveInfo target) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001693 return mResolverListController.getScore(target);
Adam Powella182e452015-07-06 16:57:56 -07001694 }
1695
Kang Li0cef910d2017-01-05 09:14:36 -08001696 public void updateModel(ComponentName componentName) {
1697 mResolverListController.updateModel(componentName);
1698 }
1699
Kang Li9fa2a2c2017-01-06 13:33:24 -08001700 public void updateChooserCounts(String packageName, int userId, String action) {
1701 mResolverListController.updateChooserCounts(packageName, userId, action);
1702 }
1703
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001704 /**
Matt Pietal0d6834a2019-06-27 13:27:52 -04001705 * @return true if all items in the display list are defined as browsers by
1706 * ResolveInfo.handleAllWebDataURI
1707 */
1708 public boolean areAllTargetsBrowsers() {
1709 return mAllTargetsAreBrowsers;
1710 }
1711
1712 /**
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001713 * Rebuild the list of resolvers. In some cases some parts will need some asynchronous work
1714 * to complete.
1715 *
1716 * @return Whether or not the list building is completed.
1717 */
1718 protected boolean rebuildList() {
Adam Powell2ed547e2015-04-29 18:45:04 -07001719 List<ResolvedComponentInfo> currentResolveList = null;
Sudheer Shanka7e64e102015-01-23 10:37:45 +00001720 // Clear the value of mOtherProfile from previous call.
1721 mOtherProfile = null;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001722 mLastChosen = null;
1723 mLastChosenPosition = -1;
Matt Pietal0d6834a2019-06-27 13:27:52 -04001724 mAllTargetsAreBrowsers = false;
Adam Powell2ed547e2015-04-29 18:45:04 -07001725 mDisplayList.clear();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001726 if (mBaseResolveList != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001727 currentResolveList = mUnfilteredResolveList = new ArrayList<>();
1728 mResolverListController.addResolveListDedupe(currentResolveList,
1729 getTargetIntent(),
1730 mBaseResolveList);
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001731 } else {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001732 currentResolveList = mUnfilteredResolveList =
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001733 mResolverListController.getResolversForIntent(shouldGetResolvedFilter(),
1734 shouldGetActivityMetadata(),
1735 mIntents);
1736 if (currentResolveList == null) {
1737 processSortedList(currentResolveList);
1738 return true;
Adam Powell2ed547e2015-04-29 18:45:04 -07001739 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001740 List<ResolvedComponentInfo> originalList =
1741 mResolverListController.filterIneligibleActivities(currentResolveList,
1742 true);
1743 if (originalList != null) {
1744 mUnfilteredResolveList = originalList;
Dianne Hackborn5320eb82012-05-18 12:05:04 -07001745 }
Jeff Hamiltond88e9aa2011-01-24 14:53:00 -06001746 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001747
1748 // So far we only support a single other profile at a time.
1749 // The first one we see gets special treatment.
1750 for (ResolvedComponentInfo info : currentResolveList) {
1751 if (info.getResolveInfoAt(0).targetUserId != UserHandle.USER_CURRENT) {
1752 mOtherProfile = new DisplayResolveInfo(info.getIntentAt(0),
1753 info.getResolveInfoAt(0),
1754 info.getResolveInfoAt(0).loadLabel(mPm),
1755 info.getResolveInfoAt(0).loadLabel(mPm),
1756 getReplacementIntent(info.getResolveInfoAt(0).activityInfo,
1757 info.getIntentAt(0)));
1758 currentResolveList.remove(info);
1759 break;
1760 }
1761 }
1762
1763 if (mOtherProfile == null) {
1764 try {
1765 mLastChosen = mResolverListController.getLastChosen();
1766 } catch (RemoteException re) {
1767 Log.d(TAG, "Error calling getLastChosenActivity\n" + re);
1768 }
1769 }
1770
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001771 int N;
You Kim43a5070e2012-11-21 23:23:45 +09001772 if ((currentResolveList != null) && ((N = currentResolveList.size()) > 0)) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001773 // We only care about fixing the unfilteredList if the current resolve list and
1774 // current resolve list are currently the same.
1775 List<ResolvedComponentInfo> originalList =
1776 mResolverListController.filterLowPriority(currentResolveList,
1777 mUnfilteredResolveList == currentResolveList);
1778 if (originalList != null) {
1779 mUnfilteredResolveList = originalList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001780 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001781
Hakan Seyalioglu873cbfd2017-02-21 19:23:43 -08001782 if (currentResolveList.size() > 1) {
Sumir Katariadb688af2017-05-10 17:33:47 -07001783 int placeholderCount = currentResolveList.size();
1784 if (useLayoutWithDefault()) {
1785 --placeholderCount;
1786 }
1787 setPlaceholderCount(placeholderCount);
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001788 AsyncTask<List<ResolvedComponentInfo>,
1789 Void,
1790 List<ResolvedComponentInfo>> sortingTask =
1791 new AsyncTask<List<ResolvedComponentInfo>,
1792 Void,
1793 List<ResolvedComponentInfo>>() {
1794 @Override
1795 protected List<ResolvedComponentInfo> doInBackground(
1796 List<ResolvedComponentInfo>... params) {
1797 mResolverListController.sort(params[0]);
1798 return params[0];
1799 }
1800
1801 @Override
1802 protected void onPostExecute(List<ResolvedComponentInfo> sortedComponents) {
1803 processSortedList(sortedComponents);
Matt Pietal74c6ed02019-04-18 13:38:46 -04001804 bindProfileView();
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001805 notifyDataSetChanged();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001806 }
1807 };
1808 sortingTask.execute(currentResolveList);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001809 postListReadyRunnable();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001810 return false;
1811 } else {
1812 processSortedList(currentResolveList);
1813 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001814 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001815 } else {
1816 processSortedList(currentResolveList);
1817 return true;
1818 }
1819 }
1820
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001821
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001822 private void processSortedList(List<ResolvedComponentInfo> sortedComponents) {
1823 int N;
1824 if (sortedComponents != null && (N = sortedComponents.size()) != 0) {
Matt Pietal0d6834a2019-06-27 13:27:52 -04001825 mAllTargetsAreBrowsers = mUseLayoutForBrowsables;
1826
Dianne Hackborneb034652009-09-07 00:49:58 -07001827 // First put the initial items at the top.
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001828 if (mInitialIntents != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001829 for (int i = 0; i < mInitialIntents.length; i++) {
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001830 Intent ii = mInitialIntents[i];
Dianne Hackborneb034652009-09-07 00:49:58 -07001831 if (ii == null) {
1832 continue;
1833 }
1834 ActivityInfo ai = ii.resolveActivityInfo(
1835 getPackageManager(), 0);
1836 if (ai == null) {
Adam Powell09a65602014-07-20 16:23:14 -07001837 Log.w(TAG, "No activity found for " + ii);
Dianne Hackborneb034652009-09-07 00:49:58 -07001838 continue;
1839 }
1840 ResolveInfo ri = new ResolveInfo();
1841 ri.activityInfo = ai;
Nicolas Prevot1a815922014-10-10 16:22:38 +01001842 UserManager userManager =
1843 (UserManager) getSystemService(Context.USER_SERVICE);
Dianne Hackborneb034652009-09-07 00:49:58 -07001844 if (ii instanceof LabeledIntent) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001845 LabeledIntent li = (LabeledIntent) ii;
Dianne Hackborneb034652009-09-07 00:49:58 -07001846 ri.resolvePackageName = li.getSourcePackage();
1847 ri.labelRes = li.getLabelResource();
1848 ri.nonLocalizedLabel = li.getNonLocalizedLabel();
1849 ri.icon = li.getIconResource();
Sudheer Shanka9ded7602015-05-19 21:17:25 +01001850 ri.iconResourceId = ri.icon;
1851 }
1852 if (userManager.isManagedProfile()) {
1853 ri.noResourceId = true;
1854 ri.icon = 0;
Dianne Hackborneb034652009-09-07 00:49:58 -07001855 }
Matt Pietal0d6834a2019-06-27 13:27:52 -04001856 mAllTargetsAreBrowsers &= ri.handleAllWebDataURI;
1857
Adam Powell2ed547e2015-04-29 18:45:04 -07001858 addResolveInfo(new DisplayResolveInfo(ii, ri,
Dianne Hackborneb034652009-09-07 00:49:58 -07001859 ri.loadLabel(getPackageManager()), null, ii));
1860 }
1861 }
You Kim43a5070e2012-11-21 23:23:45 +09001862
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001863
Mike Digmanba232682019-03-27 14:55:26 -07001864 for (ResolvedComponentInfo rci : sortedComponents) {
1865 final ResolveInfo ri = rci.getResolveInfoAt(0);
1866 if (ri != null) {
Matt Pietal0d6834a2019-06-27 13:27:52 -04001867 mAllTargetsAreBrowsers &= ri.handleAllWebDataURI;
1868
Mike Digmanba232682019-03-27 14:55:26 -07001869 ResolveInfoPresentationGetter pg = makePresentationGetter(ri);
1870 addResolveInfoWithAlternates(rci, pg.getSubLabel(), pg.getLabel());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001871 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001872 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001873 }
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001874
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001875
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001876 postListReadyRunnable();
1877 }
1878
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001879
1880
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001881 /**
1882 * Some necessary methods for creating the list are initiated in onCreate and will also
1883 * determine the layout known. We therefore can't update the UI inline and post to the
1884 * handler thread to update after the current task is finished.
1885 */
1886 private void postListReadyRunnable() {
1887 if (mPostListReadyRunnable == null) {
1888 mPostListReadyRunnable = new Runnable() {
1889 @Override
1890 public void run() {
Matt Pietal26038402019-01-08 07:29:34 -05001891 setHeader();
shafik69df96322018-12-18 15:41:19 +00001892 resetButtonBar();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001893 onListRebuilt();
1894 mPostListReadyRunnable = null;
1895 }
1896 };
1897 getMainThreadHandler().post(mPostListReadyRunnable);
1898 }
Adam Powell24428412015-04-01 17:19:56 -07001899 }
1900
1901 public void onListRebuilt() {
Xiaohui Chen393c8012017-02-14 14:55:07 -08001902 int count = getUnfilteredCount();
1903 if (count == 1 && getOtherProfile() == null) {
1904 // Only one target, so we're a candidate to auto-launch!
1905 final TargetInfo target = targetInfoForPosition(0, false);
1906 if (shouldAutoLaunchSingleChoice(target)) {
1907 safelyStartActivity(target);
1908 finish();
1909 }
1910 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001911 }
1912
Adam Powellc6d5e3a2015-04-23 12:22:20 -07001913 public boolean shouldGetResolvedFilter() {
1914 return mFilterLastUsed;
1915 }
1916
Adam Powell2ed547e2015-04-29 18:45:04 -07001917 private void addResolveInfoWithAlternates(ResolvedComponentInfo rci,
1918 CharSequence extraInfo, CharSequence roLabel) {
1919 final int count = rci.getCount();
1920 final Intent intent = rci.getIntentAt(0);
1921 final ResolveInfo add = rci.getResolveInfoAt(0);
1922 final Intent replaceIntent = getReplacementIntent(add.activityInfo, intent);
1923 final DisplayResolveInfo dri = new DisplayResolveInfo(intent, add, roLabel,
1924 extraInfo, replaceIntent);
1925 addResolveInfo(dri);
1926 if (replaceIntent == intent) {
1927 // Only add alternates if we didn't get a specific replacement from
1928 // the caller. If we have one it trumps potential alternates.
1929 for (int i = 1, N = count; i < N; i++) {
1930 final Intent altIntent = rci.getIntentAt(i);
1931 dri.addAlternateSourceIntent(altIntent);
1932 }
1933 }
1934 updateLastChosenPosition(add);
1935 }
1936
Esteban Talavera6de72662014-12-11 17:54:07 +00001937 private void updateLastChosenPosition(ResolveInfo info) {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001938 // If another profile is present, ignore the last chosen entry.
1939 if (mOtherProfile != null) {
1940 mLastChosenPosition = -1;
1941 return;
1942 }
Esteban Talavera6de72662014-12-11 17:54:07 +00001943 if (mLastChosen != null
1944 && mLastChosen.activityInfo.packageName.equals(info.activityInfo.packageName)
1945 && mLastChosen.activityInfo.name.equals(info.activityInfo.name)) {
Adam Powell2ed547e2015-04-29 18:45:04 -07001946 mLastChosenPosition = mDisplayList.size() - 1;
Esteban Talavera6de72662014-12-11 17:54:07 +00001947 }
1948 }
1949
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001950 // We assume that at this point we've already filtered out the only intent for a different
1951 // targetUserId which we're going to use.
Adam Powell88831a22014-11-20 18:17:00 -08001952 private void addResolveInfo(DisplayResolveInfo dri) {
Kang Li6afa4f22017-06-23 12:54:38 -07001953 if (dri != null && dri.mResolveInfo != null
1954 && dri.mResolveInfo.targetUserId == UserHandle.USER_CURRENT) {
1955 // Checks if this info is already listed in display.
1956 for (DisplayResolveInfo existingInfo : mDisplayList) {
1957 if (resolveInfoMatch(dri.mResolveInfo, existingInfo.mResolveInfo)) {
1958 return;
1959 }
1960 }
Adam Powell2ed547e2015-04-29 18:45:04 -07001961 mDisplayList.add(dri);
Adam Powell88831a22014-11-20 18:17:00 -08001962 }
1963 }
1964
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001965 @Nullable
Adam Powell278902c2014-07-12 18:33:22 -07001966 public ResolveInfo resolveInfoForPosition(int position, boolean filtered) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001967 TargetInfo target = targetInfoForPosition(position, filtered);
1968 if (target != null) {
1969 return target.getResolveInfo();
1970 }
1971 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001972 }
1973
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001974 @Nullable
Adam Powell24428412015-04-01 17:19:56 -07001975 public TargetInfo targetInfoForPosition(int position, boolean filtered) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001976 if (filtered) {
1977 return getItem(position);
1978 }
1979 if (mDisplayList.size() > position) {
1980 return mDisplayList.get(position);
1981 }
1982 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001983 }
1984
1985 public int getCount() {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001986 int totalSize = mDisplayList == null || mDisplayList.isEmpty() ? mPlaceholderCount :
1987 mDisplayList.size();
Adam Powell278902c2014-07-12 18:33:22 -07001988 if (mFilterLastUsed && mLastChosenPosition >= 0) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001989 totalSize--;
Adam Powell278902c2014-07-12 18:33:22 -07001990 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001991 return totalSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 }
1993
Adam Powell50077352015-05-26 18:01:55 -07001994 public int getUnfilteredCount() {
1995 return mDisplayList.size();
1996 }
1997
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001998 @Nullable
Adam Powell24428412015-04-01 17:19:56 -07001999 public TargetInfo getItem(int position) {
Adam Powell278902c2014-07-12 18:33:22 -07002000 if (mFilterLastUsed && mLastChosenPosition >= 0 && position >= mLastChosenPosition) {
2001 position++;
2002 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08002003 if (mDisplayList.size() > position) {
2004 return mDisplayList.get(position);
2005 } else {
2006 return null;
2007 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002008 }
2009
2010 public long getItemId(int position) {
2011 return position;
2012 }
2013
Adam Powell23882512016-01-29 10:21:00 -08002014 public int getDisplayResolveInfoCount() {
Adam Powell2ed547e2015-04-29 18:45:04 -07002015 return mDisplayList.size();
Adam Powell24428412015-04-01 17:19:56 -07002016 }
2017
Adam Powell23882512016-01-29 10:21:00 -08002018 public DisplayResolveInfo getDisplayResolveInfo(int index) {
Adam Powell2ed547e2015-04-29 18:45:04 -07002019 // Used to query services. We only query services for primary targets, not alternates.
2020 return mDisplayList.get(index);
Adam Powell24428412015-04-01 17:19:56 -07002021 }
2022
2023 public final View getView(int position, View convertView, ViewGroup parent) {
Adam Powellfd1e93d2014-09-07 16:52:22 -07002024 View view = convertView;
2025 if (view == null) {
Adam Powell24428412015-04-01 17:19:56 -07002026 view = createView(parent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002027 }
Adam Powell7d758002015-05-06 17:49:36 -07002028 onBindView(view, getItem(position));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002029 return view;
2030 }
2031
Adam Powell7d758002015-05-06 17:49:36 -07002032 public final View createView(ViewGroup parent) {
2033 final View view = onCreateView(parent);
2034 final ViewHolder holder = new ViewHolder(view);
2035 view.setTag(holder);
2036 return view;
2037 }
2038
2039 public View onCreateView(ViewGroup parent) {
Adam Powell24428412015-04-01 17:19:56 -07002040 return mInflater.inflate(
2041 com.android.internal.R.layout.resolve_list_item, parent, false);
2042 }
2043
Adam Powell7d758002015-05-06 17:49:36 -07002044 public final void bindView(int position, View view) {
2045 onBindView(view, getItem(position));
2046 }
2047
Mike Digmanba232682019-03-27 14:55:26 -07002048 protected void onBindView(View view, TargetInfo info) {
Adam Powell0256c6f2013-05-29 16:42:33 -07002049 final ViewHolder holder = (ViewHolder) view.getTag();
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08002050 if (info == null) {
2051 holder.icon.setImageDrawable(
2052 getDrawable(R.drawable.resolver_icon_placeholder));
2053 return;
2054 }
Mike Digmanba232682019-03-27 14:55:26 -07002055
Adam Powell63b31692015-09-28 10:45:00 -07002056 final CharSequence label = info.getDisplayLabel();
2057 if (!TextUtils.equals(holder.text.getText(), label)) {
2058 holder.text.setText(info.getDisplayLabel());
2059 }
Mike Digmanba232682019-03-27 14:55:26 -07002060
2061 // Always show a subLabel for visual consistency across list items. Show an empty
2062 // subLabel if the subLabel is the same as the label
2063 CharSequence subLabel = info.getExtendedInfo();
2064 if (TextUtils.equals(label, subLabel)) subLabel = null;
2065
2066 if (!TextUtils.equals(holder.text2.getText(), subLabel)) {
2067 holder.text2.setText(subLabel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002068 }
Mike Digmanba232682019-03-27 14:55:26 -07002069
Matt Pietala4b30072019-04-04 13:44:36 -04002070 if (info.isSuspended()) {
2071 holder.icon.setColorFilter(mSuspendedMatrixColorFilter);
2072 } else {
2073 holder.icon.setColorFilter(null);
2074 }
2075
Adam Powell24428412015-04-01 17:19:56 -07002076 if (info instanceof DisplayResolveInfo
2077 && !((DisplayResolveInfo) info).hasDisplayIcon()) {
Matt Pietalaf044ae2019-03-29 06:53:53 -04002078 new LoadIconTask((DisplayResolveInfo) info, holder.icon).execute();
2079 } else {
2080 holder.icon.setImageDrawable(info.getDisplayIcon());
Dianne Hackborneb034652009-09-07 00:49:58 -07002081 }
Adam Powell0256c6f2013-05-29 16:42:33 -07002082 }
2083 }
2084
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04002085
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08002086 @VisibleForTesting
2087 public static final class ResolvedComponentInfo {
Adam Powell2ed547e2015-04-29 18:45:04 -07002088 public final ComponentName name;
2089 private final List<Intent> mIntents = new ArrayList<>();
2090 private final List<ResolveInfo> mResolveInfos = new ArrayList<>();
2091
2092 public ResolvedComponentInfo(ComponentName name, Intent intent, ResolveInfo info) {
2093 this.name = name;
2094 add(intent, info);
2095 }
2096
2097 public void add(Intent intent, ResolveInfo info) {
2098 mIntents.add(intent);
2099 mResolveInfos.add(info);
2100 }
2101
2102 public int getCount() {
2103 return mIntents.size();
2104 }
2105
2106 public Intent getIntentAt(int index) {
2107 return index >= 0 ? mIntents.get(index) : null;
2108 }
2109
2110 public ResolveInfo getResolveInfoAt(int index) {
2111 return index >= 0 ? mResolveInfos.get(index) : null;
2112 }
2113
2114 public int findIntent(Intent intent) {
2115 for (int i = 0, N = mIntents.size(); i < N; i++) {
2116 if (intent.equals(mIntents.get(i))) {
2117 return i;
2118 }
2119 }
2120 return -1;
2121 }
2122
2123 public int findResolveInfo(ResolveInfo info) {
2124 for (int i = 0, N = mResolveInfos.size(); i < N; i++) {
2125 if (info.equals(mResolveInfos.get(i))) {
2126 return i;
2127 }
2128 }
2129 return -1;
2130 }
2131 }
2132
Adam Powell0256c6f2013-05-29 16:42:33 -07002133 static class ViewHolder {
Mike Digman4b83c212019-05-03 10:17:35 -07002134 public View itemView;
2135 public Drawable defaultItemViewBackground;
2136
Adam Powell0256c6f2013-05-29 16:42:33 -07002137 public TextView text;
2138 public TextView text2;
2139 public ImageView icon;
2140
2141 public ViewHolder(View view) {
Mike Digman4b83c212019-05-03 10:17:35 -07002142 itemView = view;
2143 defaultItemViewBackground = view.getBackground();
Adam Powell0256c6f2013-05-29 16:42:33 -07002144 text = (TextView) view.findViewById(com.android.internal.R.id.text1);
2145 text2 = (TextView) view.findViewById(com.android.internal.R.id.text2);
2146 icon = (ImageView) view.findViewById(R.id.icon);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002147 }
2148 }
2149
Adam Powell7d758002015-05-06 17:49:36 -07002150 class ItemClickListener implements AdapterView.OnItemClickListener,
2151 AdapterView.OnItemLongClickListener {
2152 @Override
2153 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
2154 final ListView listView = parent instanceof ListView ? (ListView) parent : null;
2155 if (listView != null) {
2156 position -= listView.getHeaderViewsCount();
2157 }
2158 if (position < 0) {
2159 // Header views don't count.
2160 return;
2161 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08002162 // If we're still loading, we can't yet enable the buttons.
2163 if (mAdapter.resolveInfoForPosition(position, true) == null) {
2164 return;
2165 }
2166
Adam Powell7d758002015-05-06 17:49:36 -07002167 final int checkedPos = mAdapterView.getCheckedItemPosition();
2168 final boolean hasValidSelection = checkedPos != ListView.INVALID_POSITION;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08002169 if (!useLayoutWithDefault()
Ruchi Kandoi65d76c12017-08-18 13:05:39 -07002170 && (!hasValidSelection || mLastSelected != checkedPos)
Matt Pietal0d6834a2019-06-27 13:27:52 -04002171 && mAlwaysButton != null) {
2172 setAlwaysButtonEnabled(hasValidSelection, checkedPos, true);
Adam Powell7d758002015-05-06 17:49:36 -07002173 mOnceButton.setEnabled(hasValidSelection);
2174 if (hasValidSelection) {
2175 mAdapterView.smoothScrollToPosition(checkedPos);
2176 }
2177 mLastSelected = checkedPos;
2178 } else {
2179 startSelected(position, false, true);
2180 }
2181 }
Adam Powell2d809622012-03-22 15:24:43 -07002182
2183 @Override
2184 public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
Adam Powell7d758002015-05-06 17:49:36 -07002185 final ListView listView = parent instanceof ListView ? (ListView) parent : null;
2186 if (listView != null) {
2187 position -= listView.getHeaderViewsCount();
Adam Powell24428412015-04-01 17:19:56 -07002188 }
Adam Powellfd1e93d2014-09-07 16:52:22 -07002189 if (position < 0) {
2190 // Header views don't count.
2191 return false;
2192 }
Adam Powell278902c2014-07-12 18:33:22 -07002193 ResolveInfo ri = mAdapter.resolveInfoForPosition(position, true);
Adam Powell23882512016-01-29 10:21:00 -08002194 showTargetDetails(ri);
Adam Powell2d809622012-03-22 15:24:43 -07002195 return true;
2196 }
2197
2198 }
Adam Powell0256c6f2013-05-29 16:42:33 -07002199
Matt Pietalaf044ae2019-03-29 06:53:53 -04002200 class LoadIconTask extends AsyncTask<Void, Void, Drawable> {
Adam Powell24428412015-04-01 17:19:56 -07002201 protected final DisplayResolveInfo mDisplayResolveInfo;
2202 private final ResolveInfo mResolveInfo;
Matt Pietalaf044ae2019-03-29 06:53:53 -04002203 private final ImageView mTargetView;
Adam Powell24428412015-04-01 17:19:56 -07002204
Matt Pietalaf044ae2019-03-29 06:53:53 -04002205 LoadIconTask(DisplayResolveInfo dri, ImageView target) {
Adam Powell24428412015-04-01 17:19:56 -07002206 mDisplayResolveInfo = dri;
2207 mResolveInfo = dri.getResolveInfo();
Matt Pietalaf044ae2019-03-29 06:53:53 -04002208 mTargetView = target;
Adam Powell0256c6f2013-05-29 16:42:33 -07002209 }
2210
2211 @Override
Adam Powell24428412015-04-01 17:19:56 -07002212 protected Drawable doInBackground(Void... params) {
2213 return loadIconForResolveInfo(mResolveInfo);
2214 }
2215
2216 @Override
2217 protected void onPostExecute(Drawable d) {
Matt Pietal74c6ed02019-04-18 13:38:46 -04002218 if (mAdapter.getOtherProfile() == mDisplayResolveInfo) {
Adam Powell88831a22014-11-20 18:17:00 -08002219 bindProfileView();
Matt Pietalaf044ae2019-03-29 06:53:53 -04002220 } else {
2221 mDisplayResolveInfo.setDisplayIcon(d);
2222 mTargetView.setImageDrawable(d);
Adam Powell88831a22014-11-20 18:17:00 -08002223 }
Adam Powell278902c2014-07-12 18:33:22 -07002224 }
2225 }
Adam Powell09a65602014-07-20 16:23:14 -07002226
Dianne Hackbornec452d92014-11-11 17:16:56 -08002227 static final boolean isSpecificUriMatch(int match) {
2228 match = match&IntentFilter.MATCH_CATEGORY_MASK;
2229 return match >= IntentFilter.MATCH_CATEGORY_HOST
2230 && match <= IntentFilter.MATCH_CATEGORY_PATH;
2231 }
2232
Adam Powell4c470d62015-06-19 17:46:17 -07002233 static class PickTargetOptionRequest extends PickOptionRequest {
2234 public PickTargetOptionRequest(@Nullable Prompt prompt, Option[] options,
2235 @Nullable Bundle extras) {
2236 super(prompt, options, extras);
2237 }
2238
2239 @Override
2240 public void onCancel() {
2241 super.onCancel();
2242 final ResolverActivity ra = (ResolverActivity) getActivity();
2243 if (ra != null) {
2244 ra.mPickOptionRequest = null;
2245 ra.finish();
2246 }
2247 }
2248
2249 @Override
2250 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) {
2251 super.onPickOptionResult(finished, selections, result);
2252 if (selections.length != 1) {
2253 // TODO In a better world we would filter the UI presented here and let the
2254 // user refine. Maybe later.
2255 return;
2256 }
2257
2258 final ResolverActivity ra = (ResolverActivity) getActivity();
2259 if (ra != null) {
2260 final TargetInfo ti = ra.mAdapter.getItem(selections[0].getIndex());
2261 if (ra.onTargetSelected(ti, false)) {
2262 ra.mPickOptionRequest = null;
2263 ra.finish();
2264 }
2265 }
2266 }
2267 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002268}