blob: 407a85f1bb0556c74f1d988037e73e8753063ebf [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
Clara Bayarri9550f5d2016-05-11 11:20:13 +0100364 final Set<String> categories = intent.getCategories();
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100365 MetricsLogger.action(this, mAdapter.hasFilteredItem()
366 ? MetricsProto.MetricsEvent.ACTION_SHOW_APP_DISAMBIG_APP_FEATURED
367 : MetricsProto.MetricsEvent.ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED,
368 intent.getAction() + ":" + intent.getType() + ":"
Clara Bayarri9550f5d2016-05-11 11:20:13 +0100369 + (categories != null ? Arrays.toString(categories.toArray()) : ""));
Adam Powell4c470d62015-06-19 17:46:17 -0700370 }
371
Matt Pietal74c6ed02019-04-18 13:38:46 -0400372 protected void onProfileClick(View v) {
373 final DisplayResolveInfo dri = mAdapter.getOtherProfile();
374 if (dri == null) {
375 return;
376 }
377
378 // Do not show the profile switch message anymore.
379 mProfileSwitchMessageId = -1;
380
381 onTargetSelected(dri, false);
382 finish();
383 }
384
Matt Pietal800136a2019-05-08 07:46:39 -0400385 protected WindowInsets onApplyWindowInsets(View v, WindowInsets insets) {
386 mSystemWindowInsets = insets.getSystemWindowInsets();
387
388 mResolverDrawerLayout.setPadding(mSystemWindowInsets.left, mSystemWindowInsets.top,
389 mSystemWindowInsets.right, 0);
390
391 View emptyView = findViewById(R.id.empty);
Matt Pietal32922ca2019-05-29 07:39:21 -0400392 if (emptyView != null) {
393 emptyView.setPadding(0, 0, 0, mSystemWindowInsets.bottom
394 + getResources().getDimensionPixelSize(
395 R.dimen.chooser_edge_margin_normal) * 2);
396 }
Matt Pietal800136a2019-05-08 07:46:39 -0400397
398 if (mFooterSpacer == null) {
399 mFooterSpacer = new Space(getApplicationContext());
400 } else {
401 ((ListView) mAdapterView).removeFooterView(mFooterSpacer);
402 }
403 mFooterSpacer.setLayoutParams(new AbsListView.LayoutParams(LayoutParams.MATCH_PARENT,
404 mSystemWindowInsets.bottom));
405 ((ListView) mAdapterView).addFooterView(mFooterSpacer);
406
Matt Pietal78fdbd42019-06-05 07:08:08 -0400407 resetButtonBar();
408
Matt Pietal800136a2019-05-08 07:46:39 -0400409 return insets.consumeSystemWindowInsets();
410 }
411
Jiongxuan Gao3365b162016-11-24 20:20:27 +0900412 @Override
413 public void onConfigurationChanged(Configuration newConfig) {
414 super.onConfigurationChanged(newConfig);
415 mAdapter.handlePackagesChanged();
Matt Pietal800136a2019-05-08 07:46:39 -0400416
417 if (mSystemWindowInsets != null) {
418 mResolverDrawerLayout.setPadding(mSystemWindowInsets.left, mSystemWindowInsets.top,
419 mSystemWindowInsets.right, 0);
420 }
Jiongxuan Gao3365b162016-11-24 20:20:27 +0900421 }
422
Matt Pietala4b30072019-04-04 13:44:36 -0400423 private void initSuspendedColorMatrix() {
424 int grayValue = 127;
425 float scale = 0.5f; // half bright
426
427 ColorMatrix tempBrightnessMatrix = new ColorMatrix();
428 float[] mat = tempBrightnessMatrix.getArray();
429 mat[0] = scale;
430 mat[6] = scale;
431 mat[12] = scale;
432 mat[4] = grayValue;
433 mat[9] = grayValue;
434 mat[14] = grayValue;
435
436 ColorMatrix matrix = new ColorMatrix();
437 matrix.setSaturation(0.0f);
438 matrix.preConcat(tempBrightnessMatrix);
439 mSuspendedMatrixColorFilter = new ColorMatrixColorFilter(matrix);
440 }
441
Adam Powell23882512016-01-29 10:21:00 -0800442 public void sendVoiceChoicesIfNeeded() {
Adam Powell4c470d62015-06-19 17:46:17 -0700443 if (!isVoiceInteraction()) {
444 // Clearly not needed.
445 return;
446 }
447
Adam Powell4c470d62015-06-19 17:46:17 -0700448 final Option[] options = new Option[mAdapter.getCount()];
449 for (int i = 0, N = options.length; i < N; i++) {
Matt Pietal553d8a42019-09-10 09:33:11 -0400450 TargetInfo target = mAdapter.getItem(i);
451 if (target == null) {
452 // If this occurs, a new set of targets is being loaded. Let that complete,
453 // and have the next call to send voice choices proceed instead.
454 return;
455 }
456 options[i] = optionForChooserTarget(target, i);
Adam Powell4c470d62015-06-19 17:46:17 -0700457 }
458
459 mPickOptionRequest = new PickTargetOptionRequest(
460 new Prompt(getTitle()), options, null);
461 getVoiceInteractor().submitRequest(mPickOptionRequest);
462 }
463
464 Option optionForChooserTarget(TargetInfo target, int index) {
465 return new Option(target.getDisplayLabel(), index);
Adam Powell88831a22014-11-20 18:17:00 -0800466 }
467
Adam Powell2ed547e2015-04-29 18:45:04 -0700468 protected final void setAdditionalTargets(Intent[] intents) {
469 if (intents != null) {
470 for (Intent intent : intents) {
471 mIntents.add(intent);
472 }
473 }
474 }
475
Adam Powell0ccc0e92015-04-23 17:19:37 -0700476 public Intent getTargetIntent() {
Adam Powell2ed547e2015-04-29 18:45:04 -0700477 return mIntents.isEmpty() ? null : mIntents.get(0);
Adam Powell0ccc0e92015-04-23 17:19:37 -0700478 }
479
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800480 protected String getReferrerPackageName() {
Adam Powell24428412015-04-01 17:19:56 -0700481 final Uri referrer = getReferrer();
482 if (referrer != null && "android-app".equals(referrer.getScheme())) {
483 return referrer.getHost();
484 }
485 return null;
486 }
487
Adam Powell23882512016-01-29 10:21:00 -0800488 public int getLayoutResource() {
Adam Powell24428412015-04-01 17:19:56 -0700489 return R.layout.resolver_list;
490 }
491
Matt Pietal74c6ed02019-04-18 13:38:46 -0400492 protected void bindProfileView() {
493 if (mProfileView == null) {
494 return;
495 }
496
Adam Powell88831a22014-11-20 18:17:00 -0800497 final DisplayResolveInfo dri = mAdapter.getOtherProfile();
498 if (dri != null) {
499 mProfileView.setVisibility(View.VISIBLE);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800500 View text = mProfileView.findViewById(R.id.profile_button);
501 if (!(text instanceof TextView)) {
502 text = mProfileView.findViewById(R.id.text1);
503 }
504 ((TextView) text).setText(dri.getDisplayLabel());
Adam Powell88831a22014-11-20 18:17:00 -0800505 } else {
506 mProfileView.setVisibility(View.GONE);
507 }
Adam Powell278902c2014-07-12 18:33:22 -0700508 }
509
Sander Alewijnsef6545332014-10-31 12:39:02 +0000510 private void setProfileSwitchMessageId(int contentUserHint) {
511 if (contentUserHint != UserHandle.USER_CURRENT &&
512 contentUserHint != UserHandle.myUserId()) {
513 UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
514 UserInfo originUserInfo = userManager.getUserInfo(contentUserHint);
515 boolean originIsManaged = originUserInfo != null ? originUserInfo.isManagedProfile()
516 : false;
517 boolean targetIsManaged = userManager.isManagedProfile();
518 if (originIsManaged && !targetIsManaged) {
519 mProfileSwitchMessageId = com.android.internal.R.string.forward_intent_to_owner;
520 } else if (!originIsManaged && targetIsManaged) {
521 mProfileSwitchMessageId = com.android.internal.R.string.forward_intent_to_work;
522 }
523 }
524 }
525
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700526 /**
527 * Turn on launch mode that is safe to use when forwarding intents received from
528 * applications and running in system processes. This mode uses Activity.startActivityAsCaller
529 * instead of the normal Activity.startActivity for launching the activity selected
530 * by the user.
531 *
532 * <p>This mode is set to true by default if the activity is initialized through
533 * {@link #onCreate(android.os.Bundle)}. If a subclass calls one of the other onCreate
534 * methods, it is set to false by default. You must set it before calling one of the
535 * more detailed onCreate methods, so that it will be set correctly in the case where
536 * there is only one intent to resolve and it is thus started immediately.</p>
537 */
538 public void setSafeForwardingMode(boolean safeForwarding) {
539 mSafeForwardingMode = safeForwarding;
540 }
541
shafik69df96322018-12-18 15:41:19 +0000542 protected CharSequence getTitleForAction(Intent intent, int defaultTitleRes) {
543 final ActionTitle title = mResolvingHome
544 ? ActionTitle.HOME
545 : ActionTitle.forAction(intent.getAction());
546
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800547 // While there may already be a filtered item, we can only use it in the title if the list
548 // is already sorted and all information relevant to it is already in the list.
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800549 final boolean named = mAdapter.getFilteredPosition() >= 0;
Adam Powell278902c2014-07-12 18:33:22 -0700550 if (title == ActionTitle.DEFAULT && defaultTitleRes != 0) {
551 return getString(defaultTitleRes);
shafik0c7c5d52019-02-27 12:13:25 +0000552 } else if (isHttpSchemeAndViewAction(intent)) {
553 // If the Intent's scheme is http(s) then we need to warn the user that
shafik69df96322018-12-18 15:41:19 +0000554 // they're giving access for the activity to open URLs from this specific host
Matt Pietal0d6834a2019-06-27 13:27:52 -0400555 String dialogTitle = null;
556 if (named && !mUseLayoutForBrowsables) {
557 dialogTitle = getString(ActionTitle.BROWSABLE_APP_TITLE_RES,
558 mAdapter.getFilteredItem().getDisplayLabel());
559 } else if (named && mUseLayoutForBrowsables) {
560 dialogTitle = getString(ActionTitle.BROWSABLE_HOST_APP_TITLE_RES,
561 intent.getData().getHost(),
562 mAdapter.getFilteredItem().getDisplayLabel());
563 } else if (mAdapter.areAllTargetsBrowsers()) {
564 dialogTitle = getString(ActionTitle.BROWSABLE_TITLE_RES);
565 } else {
566 dialogTitle = getString(ActionTitle.BROWSABLE_HOST_TITLE_RES,
567 intent.getData().getHost());
568 }
569 return dialogTitle;
Adam Powell278902c2014-07-12 18:33:22 -0700570 } else {
Adam Powell24428412015-04-01 17:19:56 -0700571 return named
572 ? getString(title.namedTitleRes, mAdapter.getFilteredItem().getDisplayLabel())
573 : getString(title.titleRes);
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700574 }
Adam Powellc5878612012-05-04 18:42:38 -0700575 }
576
Adam Powelle9414d92014-07-05 17:44:18 -0700577 void dismiss() {
578 if (!isFinishing()) {
579 finish();
580 }
581 }
582
Adam Powellc5878612012-05-04 18:42:38 -0700583
Mike Digman220587e2019-03-13 11:21:42 -0700584 /**
Mike Digmanba232682019-03-27 14:55:26 -0700585 * Loads the icon and label for the provided ApplicationInfo. Defaults to using the application
586 * icon and label over any IntentFilter or Activity icon to increase user understanding, with an
587 * exception for applications that hold the right permission. Always attempts to use available
588 * resources over PackageManager loading mechanisms so badging can be done by iconloader. Uses
589 * Strings to strip creative formatting.
Mike Digman220587e2019-03-13 11:21:42 -0700590 */
Mike Digmanba232682019-03-27 14:55:26 -0700591 private abstract static class TargetPresentationGetter {
592 @Nullable abstract Drawable getIconSubstituteInternal();
593 @Nullable abstract String getAppSubLabelInternal();
Mike Digman220587e2019-03-13 11:21:42 -0700594
Mike Digmanba232682019-03-27 14:55:26 -0700595 private Context mCtx;
Mike Digmanba232682019-03-27 14:55:26 -0700596 private final int mIconDpi;
Mike Digman9c4ae502019-03-19 17:02:25 -0700597 private final boolean mHasSubstitutePermission;
Mike Digmanc0ef5542019-04-01 15:36:25 -0700598 private final ApplicationInfo mAi;
599
600 protected PackageManager mPm;
Mike Digman9c4ae502019-03-19 17:02:25 -0700601
Mike Digmanba232682019-03-27 14:55:26 -0700602 TargetPresentationGetter(Context ctx, int iconDpi, ApplicationInfo ai) {
603 mCtx = ctx;
604 mPm = ctx.getPackageManager();
Mike Digman9c4ae502019-03-19 17:02:25 -0700605 mAi = ai;
Mike Digmanba232682019-03-27 14:55:26 -0700606 mIconDpi = iconDpi;
Mike Digman9c4ae502019-03-19 17:02:25 -0700607 mHasSubstitutePermission = PackageManager.PERMISSION_GRANTED == mPm.checkPermission(
608 android.Manifest.permission.SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON,
609 mAi.packageName);
610 }
611
Mike Digmanb2e5e712019-04-19 15:49:10 -0700612 public Drawable getIcon(UserHandle userHandle) {
613 return new BitmapDrawable(mCtx.getResources(), getIconBitmap(userHandle));
Mike Digman9c4ae502019-03-19 17:02:25 -0700614 }
615
Mike Digmanb2e5e712019-04-19 15:49:10 -0700616 public Bitmap getIconBitmap(UserHandle userHandle) {
Mike Digman9c4ae502019-03-19 17:02:25 -0700617 Drawable dr = null;
618 if (mHasSubstitutePermission) {
Mike Digmanba232682019-03-27 14:55:26 -0700619 dr = getIconSubstituteInternal();
Mike Digman9c4ae502019-03-19 17:02:25 -0700620 }
621
622 if (dr == null) {
623 try {
624 if (mAi.icon != 0) {
625 dr = loadIconFromResource(mPm.getResourcesForApplication(mAi), mAi.icon);
Mike Digman220587e2019-03-13 11:21:42 -0700626 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700627 } catch (NameNotFoundException ignore) {
628 }
629 }
630
631 // Fall back to ApplicationInfo#loadIcon if nothing has been loaded
632 if (dr == null) {
633 dr = mAi.loadIcon(mPm);
634 }
635
Mike Digmanba232682019-03-27 14:55:26 -0700636 SimpleIconFactory sif = SimpleIconFactory.obtain(mCtx);
Mike Digmanb2e5e712019-04-19 15:49:10 -0700637 Bitmap icon = sif.createUserBadgedIconBitmap(dr, userHandle);
Mike Digman9c4ae502019-03-19 17:02:25 -0700638 sif.recycle();
639
640 return icon;
641 }
642
Mike Digmanba232682019-03-27 14:55:26 -0700643 public String getLabel() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700644 String label = null;
645 // Apps with the substitute permission will always show the sublabel as their label
646 if (mHasSubstitutePermission) {
Mike Digmanba232682019-03-27 14:55:26 -0700647 label = getAppSubLabelInternal();
Mike Digman9c4ae502019-03-19 17:02:25 -0700648 }
649
650 if (label == null) {
651 label = (String) mAi.loadLabel(mPm);
652 }
653
654 return label;
655 }
656
Mike Digmanba232682019-03-27 14:55:26 -0700657 public String getSubLabel() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700658 // Apps with the substitute permission will never have a sublabel
659 if (mHasSubstitutePermission) return null;
Mike Digmanba232682019-03-27 14:55:26 -0700660 return getAppSubLabelInternal();
661 }
662
663 protected String loadLabelFromResource(Resources res, int resId) {
664 return res.getString(resId);
Mike Digman9c4ae502019-03-19 17:02:25 -0700665 }
666
667 @Nullable
668 protected Drawable loadIconFromResource(Resources res, int resId) {
669 return res.getDrawableForDensity(resId, mIconDpi);
670 }
671
672 }
673
Mike Digmanba232682019-03-27 14:55:26 -0700674 /**
675 * Loads the icon and label for the provided ResolveInfo.
676 */
677 @VisibleForTesting
Mike Digmanc0ef5542019-04-01 15:36:25 -0700678 public static class ResolveInfoPresentationGetter extends ActivityInfoPresentationGetter {
Mike Digman9c4ae502019-03-19 17:02:25 -0700679 private final ResolveInfo mRi;
Mike Digmanba232682019-03-27 14:55:26 -0700680 public ResolveInfoPresentationGetter(Context ctx, int iconDpi, ResolveInfo ri) {
Mike Digmanc0ef5542019-04-01 15:36:25 -0700681 super(ctx, iconDpi, ri.activityInfo);
Mike Digman9c4ae502019-03-19 17:02:25 -0700682 mRi = ri;
683 }
684
685 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700686 Drawable getIconSubstituteInternal() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700687 Drawable dr = null;
688 try {
689 // Do not use ResolveInfo#getIconResource() as it defaults to the app
690 if (mRi.resolvePackageName != null && mRi.icon != 0) {
691 dr = loadIconFromResource(
692 mPm.getResourcesForApplication(mRi.resolvePackageName), mRi.icon);
Adam Powellc5878612012-05-04 18:42:38 -0700693 }
Mike Digman220587e2019-03-13 11:21:42 -0700694 } catch (NameNotFoundException e) {
695 Log.e(TAG, "SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON permission granted but "
696 + "couldn't find resources for package", e);
Adam Powellc5878612012-05-04 18:42:38 -0700697 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700698
Mike Digmanc0ef5542019-04-01 15:36:25 -0700699 // Fall back to ActivityInfo if no icon is found via ResolveInfo
700 if (dr == null) dr = super.getIconSubstituteInternal();
701
Mike Digman9c4ae502019-03-19 17:02:25 -0700702 return dr;
Adam Powellc5878612012-05-04 18:42:38 -0700703 }
Mike Digman220587e2019-03-13 11:21:42 -0700704
Mike Digman9c4ae502019-03-19 17:02:25 -0700705 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700706 String getAppSubLabelInternal() {
707 // Will default to app name if no intent filter or activity label set, make sure to
708 // check if subLabel matches label before final display
Mike Digman9c4ae502019-03-19 17:02:25 -0700709 return (String) mRi.loadLabel(mPm);
710 }
711 }
712
Mike Digmanba232682019-03-27 14:55:26 -0700713 ResolveInfoPresentationGetter makePresentationGetter(ResolveInfo ri) {
714 return new ResolveInfoPresentationGetter(this, mIconDpi, ri);
715 }
716
717 /**
718 * Loads the icon and label for the provided ActivityInfo.
719 */
720 @VisibleForTesting
721 public static class ActivityInfoPresentationGetter extends TargetPresentationGetter {
Mike Digman9c4ae502019-03-19 17:02:25 -0700722 private final ActivityInfo mActivityInfo;
Mike Digmanba232682019-03-27 14:55:26 -0700723 public ActivityInfoPresentationGetter(Context ctx, int iconDpi,
724 ActivityInfo activityInfo) {
725 super(ctx, iconDpi, activityInfo.applicationInfo);
Mike Digman9c4ae502019-03-19 17:02:25 -0700726 mActivityInfo = activityInfo;
727 }
728
729 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700730 Drawable getIconSubstituteInternal() {
Mike Digman9c4ae502019-03-19 17:02:25 -0700731 Drawable dr = null;
Mike Digman220587e2019-03-13 11:21:42 -0700732 try {
Mike Digman9c4ae502019-03-19 17:02:25 -0700733 // Do not use ActivityInfo#getIconResource() as it defaults to the app
734 if (mActivityInfo.icon != 0) {
735 dr = loadIconFromResource(
736 mPm.getResourcesForApplication(mActivityInfo.applicationInfo),
737 mActivityInfo.icon);
738 }
739 } catch (NameNotFoundException e) {
740 Log.e(TAG, "SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON permission granted but "
741 + "couldn't find resources for package", e);
Mike Digman220587e2019-03-13 11:21:42 -0700742 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700743
744 return dr;
Mike Digman220587e2019-03-13 11:21:42 -0700745 }
746
Mike Digman9c4ae502019-03-19 17:02:25 -0700747 @Override
Mike Digmanba232682019-03-27 14:55:26 -0700748 String getAppSubLabelInternal() {
749 // Will default to app name if no activity label set, make sure to check if subLabel
750 // matches label before final display
Mike Digman9c4ae502019-03-19 17:02:25 -0700751 return (String) mActivityInfo.loadLabel(mPm);
Mike Digman220587e2019-03-13 11:21:42 -0700752 }
Mike Digman9c4ae502019-03-19 17:02:25 -0700753 }
Mike Digman220587e2019-03-13 11:21:42 -0700754
Mike Digmanba232682019-03-27 14:55:26 -0700755 protected ActivityInfoPresentationGetter makePresentationGetter(ActivityInfo ai) {
756 return new ActivityInfoPresentationGetter(this, mIconDpi, ai);
757 }
758
Mike Digman9c4ae502019-03-19 17:02:25 -0700759 Drawable loadIconForResolveInfo(ResolveInfo ri) {
Mike Digmanb2e5e712019-04-19 15:49:10 -0700760 // Load icons based on the current process. If in work profile icons should be badged.
761 return makePresentationGetter(ri).getIcon(Process.myUserHandle());
Adam Powellc5878612012-05-04 18:42:38 -0700762 }
763
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800764 @Override
765 protected void onRestart() {
766 super.onRestart();
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700767 if (!mRegistered) {
768 mPackageMonitor.register(this, getMainLooper(), false);
769 mRegistered = true;
770 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800771 mAdapter.handlePackagesChanged();
Matt Pietal74c6ed02019-04-18 13:38:46 -0400772 bindProfileView();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800773 }
774
775 @Override
776 protected void onStop() {
777 super.onStop();
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700778 if (mRegistered) {
779 mPackageMonitor.unregister();
780 mRegistered = false;
781 }
Wale Ogunwale9014e662016-03-19 14:55:46 -0700782 final Intent intent = getIntent();
783 if ((intent.getFlags() & FLAG_ACTIVITY_NEW_TASK) != 0 && !isVoiceInteraction()
Jorim Jaggif631ef72017-02-24 13:49:47 +0100784 && !mResolvingHome && !mRetainInOnStop) {
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700785 // This resolver is in the unusual situation where it has been
786 // launched at the top of a new task. We don't let it be added
787 // to the recent tasks shown to the user, and we need to make sure
788 // that each time we are launched we get the correct launching
789 // uid (not re-using the same resolver from an old launching uid),
790 // so we will now finish ourself since being no longer visible,
791 // the user probably can't get back to us.
792 if (!isChangingConfigurations()) {
793 finish();
794 }
795 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800796 }
797
Adam Powellc5878612012-05-04 18:42:38 -0700798 @Override
Adam Powell4c470d62015-06-19 17:46:17 -0700799 protected void onDestroy() {
800 super.onDestroy();
801 if (!isChangingConfigurations() && mPickOptionRequest != null) {
802 mPickOptionRequest.cancel();
803 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800804 if (mPostListReadyRunnable != null) {
805 getMainThreadHandler().removeCallbacks(mPostListReadyRunnable);
806 mPostListReadyRunnable = null;
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800807 }
Kang Li38a6da642017-04-05 12:30:55 -0700808 if (mAdapter != null && mAdapter.mResolverListController != null) {
809 mAdapter.mResolverListController.destroy();
810 }
Adam Powell4c470d62015-06-19 17:46:17 -0700811 }
812
813 @Override
Adam Powell9bee4662012-05-08 11:07:23 -0700814 protected void onRestoreInstanceState(Bundle savedInstanceState) {
815 super.onRestoreInstanceState(savedInstanceState);
shafik69df96322018-12-18 15:41:19 +0000816 resetButtonBar();
Adam Powell9bee4662012-05-08 11:07:23 -0700817 }
818
shafik0c7c5d52019-02-27 12:13:25 +0000819 private boolean isHttpSchemeAndViewAction(Intent intent) {
820 return (IntentFilter.SCHEME_HTTP.equals(intent.getScheme())
821 || IntentFilter.SCHEME_HTTPS.equals(intent.getScheme()))
822 && Intent.ACTION_VIEW.equals(intent.getAction());
823 }
824
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100825 private boolean hasManagedProfile() {
826 UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
827 if (userManager == null) {
828 return false;
829 }
830
831 try {
832 List<UserInfo> profiles = userManager.getProfiles(getUserId());
833 for (UserInfo userInfo : profiles) {
834 if (userInfo != null && userInfo.isManagedProfile()) {
835 return true;
836 }
837 }
838 } catch (SecurityException e) {
839 return false;
840 }
841 return false;
842 }
843
844 private boolean supportsManagedProfiles(ResolveInfo resolveInfo) {
845 try {
846 ApplicationInfo appInfo = getPackageManager().getApplicationInfo(
847 resolveInfo.activityInfo.packageName, 0 /* default flags */);
Adam Powell4c470d62015-06-19 17:46:17 -0700848 return appInfo.targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100849 } catch (NameNotFoundException e) {
850 return false;
851 }
852 }
853
Adam Powell278902c2014-07-12 18:33:22 -0700854 private void setAlwaysButtonEnabled(boolean hasValidSelection, int checkedPos,
855 boolean filtered) {
Nicolas Prevot50449882014-06-23 12:42:37 +0100856 boolean enabled = false;
857 if (hasValidSelection) {
Adam Powell278902c2014-07-12 18:33:22 -0700858 ResolveInfo ri = mAdapter.resolveInfoForPosition(checkedPos, filtered);
Hakan Seyalioglu5dbc8192017-02-24 16:16:37 -0800859 if (ri == null) {
860 Log.e(TAG, "Invalid position supplied to setAlwaysButtonEnabled");
861 return;
862 } else if (ri.targetUserId != UserHandle.USER_CURRENT) {
863 Log.e(TAG, "Attempted to set selection to resolve info for another user");
864 return;
865 } else {
Nicolas Prevot50449882014-06-23 12:42:37 +0100866 enabled = true;
867 }
Matt Pietal0d6834a2019-06-27 13:27:52 -0400868 if (mUseLayoutForBrowsables && !ri.handleAllWebDataURI) {
869 mAlwaysButton.setText(getResources()
870 .getString(R.string.activity_resolver_set_always));
871 } else {
872 mAlwaysButton.setText(getResources()
873 .getString(R.string.activity_resolver_use_always));
874 }
Nicolas Prevot50449882014-06-23 12:42:37 +0100875 }
876 mAlwaysButton.setEnabled(enabled);
877 }
878
Adam Powellc5878612012-05-04 18:42:38 -0700879 public void onButtonClick(View v) {
880 final int id = v.getId();
shafik69df96322018-12-18 15:41:19 +0000881 int which = mAdapter.hasFilteredItem()
882 ? mAdapter.getFilteredPosition()
883 : mAdapterView.getCheckedItemPosition();
884 boolean hasIndexBeenFiltered = !mAdapter.hasFilteredItem();
Matt Pietal0d6834a2019-06-27 13:27:52 -0400885 ResolveInfo ri = mAdapter.resolveInfoForPosition(which, hasIndexBeenFiltered);
Matt Pietala310c1f2019-07-03 09:12:56 -0400886 if (mUseLayoutForBrowsables
887 && !ri.handleAllWebDataURI && id == R.id.button_always) {
Matt Pietal0d6834a2019-06-27 13:27:52 -0400888 showSettingsForSelected(ri);
shafik69df96322018-12-18 15:41:19 +0000889 } else {
890 startSelected(which, id == R.id.button_always, hasIndexBeenFiltered);
891 }
892 }
893
Matt Pietal0d6834a2019-06-27 13:27:52 -0400894 private void showSettingsForSelected(ResolveInfo ri) {
shafik34064c32019-03-06 15:42:52 +0000895 Intent intent = new Intent();
Matt Pietal0d6834a2019-06-27 13:27:52 -0400896
897 final String packageName = ri.activityInfo.packageName;
898 Bundle showFragmentArgs = new Bundle();
899 showFragmentArgs.putString(EXTRA_FRAGMENT_ARG_KEY, OPEN_LINKS_COMPONENT_KEY);
900 showFragmentArgs.putString("package", packageName);
901
shafik34064c32019-03-06 15:42:52 +0000902 // For regular apps, we open the Open by Default page
Matt Pietal0d6834a2019-06-27 13:27:52 -0400903 intent.setAction(Settings.ACTION_APP_OPEN_BY_DEFAULT_SETTINGS)
904 .setData(Uri.fromParts("package", packageName, null))
905 .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT)
906 .putExtra(EXTRA_FRAGMENT_ARG_KEY, OPEN_LINKS_COMPONENT_KEY)
907 .putExtra(EXTRA_SHOW_FRAGMENT_ARGS, showFragmentArgs);
908
shafik34064c32019-03-06 15:42:52 +0000909 startActivity(intent);
Adam Powellc5878612012-05-04 18:42:38 -0700910 }
911
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800912 public void startSelected(int which, boolean always, boolean hasIndexBeenFiltered) {
Amith Yamasani07cd3512013-09-18 13:16:00 -0700913 if (isFinishing()) {
914 return;
915 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800916 ResolveInfo ri = mAdapter.resolveInfoForPosition(which, hasIndexBeenFiltered);
Sander Alewijnse86d35ba2015-02-04 15:14:53 +0000917 if (mResolvingHome && hasManagedProfile() && !supportsManagedProfiles(ri)) {
918 Toast.makeText(this, String.format(getResources().getString(
919 com.android.internal.R.string.activity_resolver_work_profiles_support),
920 ri.activityInfo.loadLabel(getPackageManager()).toString()),
921 Toast.LENGTH_LONG).show();
922 return;
923 }
924
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800925 TargetInfo target = mAdapter.targetInfoForPosition(which, hasIndexBeenFiltered);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800926 if (target == null) {
927 return;
928 }
Adam Powell2ed547e2015-04-29 18:45:04 -0700929 if (onTargetSelected(target, always)) {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800930 if (always && mSupportsAlwaysUseOption) {
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100931 MetricsLogger.action(
932 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_ALWAYS);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800933 } else if (mSupportsAlwaysUseOption) {
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100934 MetricsLogger.action(
935 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_JUST_ONCE);
936 } else {
937 MetricsLogger.action(
938 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_TAP);
939 }
940 MetricsLogger.action(this, mAdapter.hasFilteredItem()
941 ? MetricsProto.MetricsEvent.ACTION_HIDE_APP_DISAMBIG_APP_FEATURED
942 : MetricsProto.MetricsEvent.ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED);
Adam Powell2ed547e2015-04-29 18:45:04 -0700943 finish();
944 }
Mike Lockwood02eb8742011-02-27 09:10:37 -0800945 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946
Adam Powelle49d9392014-07-17 18:45:19 -0700947 /**
948 * Replace me in subclasses!
949 */
Nicolas Prevot0e2b73f2014-10-27 10:06:11 +0000950 public Intent getReplacementIntent(ActivityInfo aInfo, Intent defIntent) {
Adam Powelle49d9392014-07-17 18:45:19 -0700951 return defIntent;
952 }
953
Adam Powell2ed547e2015-04-29 18:45:04 -0700954 protected boolean onTargetSelected(TargetInfo target, boolean alwaysCheck) {
Adam Powell24428412015-04-01 17:19:56 -0700955 final ResolveInfo ri = target.getResolveInfo();
956 final Intent intent = target != null ? target.getResolvedIntent() : null;
957
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800958 if (intent != null && (mSupportsAlwaysUseOption || mAdapter.hasFilteredItem())
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800959 && mAdapter.mUnfilteredResolveList != null) {
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700960 // Build a reasonable intent filter, based on what matched.
961 IntentFilter filter = new IntentFilter();
Henrik Engström3277cf12014-07-17 12:18:29 +0200962 Intent filterIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800963
Henrik Engström3277cf12014-07-17 12:18:29 +0200964 if (intent.getSelector() != null) {
965 filterIntent = intent.getSelector();
966 } else {
967 filterIntent = intent;
968 }
969
970 String action = filterIntent.getAction();
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800971 if (action != null) {
972 filter.addAction(action);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973 }
Henrik Engström3277cf12014-07-17 12:18:29 +0200974 Set<String> categories = filterIntent.getCategories();
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700975 if (categories != null) {
976 for (String cat : categories) {
977 filter.addCategory(cat);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978 }
979 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700980 filter.addCategory(Intent.CATEGORY_DEFAULT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800981
Adam Powell24428412015-04-01 17:19:56 -0700982 int cat = ri.match & IntentFilter.MATCH_CATEGORY_MASK;
Henrik Engström3277cf12014-07-17 12:18:29 +0200983 Uri data = filterIntent.getData();
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700984 if (cat == IntentFilter.MATCH_CATEGORY_TYPE) {
Henrik Engström3277cf12014-07-17 12:18:29 +0200985 String mimeType = filterIntent.resolveType(this);
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700986 if (mimeType != null) {
987 try {
988 filter.addDataType(mimeType);
989 } catch (IntentFilter.MalformedMimeTypeException e) {
990 Log.w("ResolverActivity", e);
991 filter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800992 }
993 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700994 }
995 if (data != null && data.getScheme() != null) {
996 // We need the data specification if there was no type,
997 // OR if the scheme is not one of our magical "file:"
998 // or "content:" schemes (see IntentFilter for the reason).
999 if (cat != IntentFilter.MATCH_CATEGORY_TYPE
1000 || (!"file".equals(data.getScheme())
1001 && !"content".equals(data.getScheme()))) {
1002 filter.addDataScheme(data.getScheme());
1003
1004 // Look through the resolved filter to determine which part
1005 // of it matched the original Intent.
1006 Iterator<PatternMatcher> pIt = ri.filter.schemeSpecificPartsIterator();
1007 if (pIt != null) {
1008 String ssp = data.getSchemeSpecificPart();
1009 while (ssp != null && pIt.hasNext()) {
1010 PatternMatcher p = pIt.next();
1011 if (p.match(ssp)) {
1012 filter.addDataSchemeSpecificPart(p.getPath(), p.getType());
1013 break;
1014 }
Dianne Hackborndf1c0bf2013-06-12 16:21:38 -07001015 }
1016 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001017 Iterator<IntentFilter.AuthorityEntry> aIt = ri.filter.authoritiesIterator();
1018 if (aIt != null) {
1019 while (aIt.hasNext()) {
1020 IntentFilter.AuthorityEntry a = aIt.next();
1021 if (a.match(data) >= 0) {
1022 int port = a.getPort();
1023 filter.addDataAuthority(a.getHost(),
1024 port >= 0 ? Integer.toString(port) : null);
1025 break;
1026 }
1027 }
1028 }
1029 pIt = ri.filter.pathsIterator();
1030 if (pIt != null) {
1031 String path = data.getPath();
1032 while (path != null && pIt.hasNext()) {
1033 PatternMatcher p = pIt.next();
1034 if (p.match(path)) {
1035 filter.addDataPath(p.getPath(), p.getType());
1036 break;
1037 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001038 }
1039 }
1040 }
1041 }
1042
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001043 if (filter != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001044 final int N = mAdapter.mUnfilteredResolveList.size();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001045 ComponentName[] set;
1046 // If we don't add back in the component for forwarding the intent to a managed
1047 // profile, the preferred activity may not be updated correctly (as the set of
1048 // components we tell it we knew about will have changed).
1049 final boolean needToAddBackProfileForwardingComponent
1050 = mAdapter.mOtherProfile != null;
1051 if (!needToAddBackProfileForwardingComponent) {
1052 set = new ComponentName[N];
1053 } else {
1054 set = new ComponentName[N + 1];
1055 }
1056
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001057 int bestMatch = 0;
1058 for (int i=0; i<N; i++) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001059 ResolveInfo r = mAdapter.mUnfilteredResolveList.get(i).getResolveInfoAt(0);
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001060 set[i] = new ComponentName(r.activityInfo.packageName,
1061 r.activityInfo.name);
1062 if (r.match > bestMatch) bestMatch = r.match;
1063 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001064
1065 if (needToAddBackProfileForwardingComponent) {
1066 set[N] = mAdapter.mOtherProfile.getResolvedComponentName();
1067 final int otherProfileMatch = mAdapter.mOtherProfile.getResolveInfo().match;
1068 if (otherProfileMatch > bestMatch) bestMatch = otherProfileMatch;
1069 }
1070
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001071 if (alwaysCheck) {
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001072 final int userId = getUserId();
1073 final PackageManager pm = getPackageManager();
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001074
1075 // Set the preferred Activity
1076 pm.addPreferredActivity(filter, bestMatch, set, intent.getComponent());
1077
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001078 if (ri.handleAllWebDataURI) {
1079 // Set default Browser if needed
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001080 final String packageName = pm.getDefaultBrowserPackageNameAsUser(userId);
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001081 if (TextUtils.isEmpty(packageName)) {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001082 pm.setDefaultBrowserPackageNameAsUser(ri.activityInfo.packageName, userId);
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001083 }
1084 } else {
1085 // Update Domain Verification status
1086 ComponentName cn = intent.getComponent();
1087 String packageName = cn.getPackageName();
1088 String dataScheme = (data != null) ? data.getScheme() : null;
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001089
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001090 boolean isHttpOrHttps = (dataScheme != null) &&
1091 (dataScheme.equals(IntentFilter.SCHEME_HTTP) ||
1092 dataScheme.equals(IntentFilter.SCHEME_HTTPS));
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001093
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001094 boolean isViewAction = (action != null) && action.equals(Intent.ACTION_VIEW);
1095 boolean hasCategoryBrowsable = (categories != null) &&
1096 categories.contains(Intent.CATEGORY_BROWSABLE);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001097
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001098 if (isHttpOrHttps && isViewAction && hasCategoryBrowsable) {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -07001099 pm.updateIntentVerificationStatusAsUser(packageName,
Fabrice Di Meglio3453e082015-05-11 17:46:23 -07001100 PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS,
1101 userId);
1102 }
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -08001103 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001104 } else {
1105 try {
Hakan Seyalioglu9149dca2017-01-17 12:20:01 -08001106 mAdapter.mResolverListController.setLastChosen(intent, filter, bestMatch);
Amith Yamasani588dd2a2013-09-03 12:30:44 -07001107 } catch (RemoteException re) {
1108 Log.d(TAG, "Error calling setLastChosenActivity\n" + re);
1109 }
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -07001110 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 }
1112 }
1113
Adam Powell24428412015-04-01 17:19:56 -07001114 if (target != null) {
1115 safelyStartActivity(target);
Matt Pietala4b30072019-04-04 13:44:36 -04001116
1117 // Rely on the ActivityManager to pop up a dialog regarding app suspension
1118 // and return false
1119 if (target.isSuspended()) {
1120 return false;
1121 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001122 }
Matt Pietala4b30072019-04-04 13:44:36 -04001123
Adam Powell2ed547e2015-04-29 18:45:04 -07001124 return true;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001125 }
1126
Adam Powell23882512016-01-29 10:21:00 -08001127 public void safelyStartActivity(TargetInfo cti) {
Jeff Sharkey2b9eb892016-02-16 09:21:51 -07001128 // We're dispatching intents that might be coming from legacy apps, so
1129 // don't kill ourselves.
1130 StrictMode.disableDeathOnFileUriExposure();
1131 try {
1132 safelyStartActivityInternal(cti);
1133 } finally {
1134 StrictMode.enableDeathOnFileUriExposure();
1135 }
1136 }
1137
1138 private void safelyStartActivityInternal(TargetInfo cti) {
Sander Alewijnsef6545332014-10-31 12:39:02 +00001139 // If needed, show that intent is forwarded
1140 // from managed profile to owner or other way around.
1141 if (mProfileSwitchMessageId != -1) {
1142 Toast.makeText(this, getString(mProfileSwitchMessageId), Toast.LENGTH_LONG).show();
1143 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001144 if (!mSafeForwardingMode) {
Adam Powell24428412015-04-01 17:19:56 -07001145 if (cti.start(this, null)) {
1146 onActivityStarted(cti);
1147 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001148 return;
1149 }
1150 try {
Adam Powell24428412015-04-01 17:19:56 -07001151 if (cti.startAsCaller(this, null, UserHandle.USER_NULL)) {
1152 onActivityStarted(cti);
1153 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001154 } catch (RuntimeException e) {
1155 String launchedFromPackage;
1156 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001157 launchedFromPackage = ActivityTaskManager.getService().getLaunchedFromPackage(
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001158 getActivityToken());
1159 } catch (RemoteException e2) {
1160 launchedFromPackage = "??";
1161 }
1162 Slog.wtf(TAG, "Unable to launch as uid " + mLaunchedFromUid
1163 + " package " + launchedFromPackage + ", while running in "
1164 + ActivityThread.currentProcessName(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001166 }
1167
Alison Cichowlas3e340502018-08-07 17:15:01 -04001168
1169 boolean startAsCallerImpl(Intent intent, Bundle options, boolean ignoreTargetSecurity,
1170 int userId) {
1171 // Pass intent to delegate chooser activity with permission token.
1172 // TODO: This should move to a trampoline Activity in the system when the ChooserActivity
1173 // moves into systemui
1174 try {
1175 // TODO: Once this is a small springboard activity, it can move off the UI process
1176 // and we can move the request method to ActivityManagerInternal.
1177 IBinder permissionToken = ActivityTaskManager.getService()
1178 .requestStartActivityPermissionToken(getActivityToken());
1179 final Intent chooserIntent = new Intent();
1180 final ComponentName delegateActivity = ComponentName.unflattenFromString(
1181 Resources.getSystem().getString(R.string.config_chooserActivity));
1182 chooserIntent.setClassName(delegateActivity.getPackageName(),
1183 delegateActivity.getClassName());
1184 chooserIntent.putExtra(ActivityTaskManager.EXTRA_PERMISSION_TOKEN, permissionToken);
1185
1186 // TODO: These extras will change as chooser activity moves into systemui
1187 chooserIntent.putExtra(Intent.EXTRA_INTENT, intent);
1188 chooserIntent.putExtra(ActivityTaskManager.EXTRA_OPTIONS, options);
1189 chooserIntent.putExtra(ActivityTaskManager.EXTRA_IGNORE_TARGET_SECURITY,
1190 ignoreTargetSecurity);
1191 chooserIntent.putExtra(Intent.EXTRA_USER_ID, userId);
Alison Cichowlas7b6f3b62018-12-07 09:06:57 -05001192 chooserIntent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT
1193 | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001194 startActivity(chooserIntent);
1195 } catch (RemoteException e) {
1196 Log.e(TAG, e.toString());
1197 }
1198 return true;
1199 }
1200
Adam Powell23882512016-01-29 10:21:00 -08001201 public void onActivityStarted(TargetInfo cti) {
Adam Powell0b3c1122014-10-09 12:50:14 -07001202 // Do nothing
1203 }
1204
Adam Powell23882512016-01-29 10:21:00 -08001205 public boolean shouldGetActivityMetadata() {
Adam Powell24428412015-04-01 17:19:56 -07001206 return false;
1207 }
1208
Adam Powell23882512016-01-29 10:21:00 -08001209 public boolean shouldAutoLaunchSingleChoice(TargetInfo target) {
Matt Pietala4b30072019-04-04 13:44:36 -04001210 return !target.isSuspended();
Adam Powell39e94eb2015-09-08 17:01:49 -07001211 }
1212
Adam Powell23882512016-01-29 10:21:00 -08001213 public void showTargetDetails(ResolveInfo ri) {
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001214 Intent in = new Intent().setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)
Adam Powell0fc5b2b2012-07-18 18:20:29 -07001215 .setData(Uri.fromParts("package", ri.activityInfo.packageName, null))
Adam Powell24428412015-04-01 17:19:56 -07001216 .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
Amith Yamasani203a2f42012-10-03 20:16:40 -07001217 startActivity(in);
Adam Powellc5878612012-05-04 18:42:38 -07001218 }
1219
Adam Powell23882512016-01-29 10:21:00 -08001220 public ResolveListAdapter createAdapter(Context context, List<Intent> payloadIntents,
Adam Powell7d758002015-05-06 17:49:36 -07001221 Intent[] initialIntents, List<ResolveInfo> rList, int launchedFromUid,
1222 boolean filterLastUsed) {
1223 return new ResolveListAdapter(context, payloadIntents, initialIntents, rList,
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001224 launchedFromUid, filterLastUsed, createListController());
1225 }
1226
1227 @VisibleForTesting
1228 protected ResolverListController createListController() {
1229 return new ResolverListController(
1230 this,
1231 mPm,
1232 getTargetIntent(),
1233 getReferrerPackageName(),
1234 mLaunchedFromUid);
Adam Powell88831a22014-11-20 18:17:00 -08001235 }
1236
Adam Powell39e94eb2015-09-08 17:01:49 -07001237 /**
1238 * Returns true if the activity is finishing and creation should halt
1239 */
Adam Powell23882512016-01-29 10:21:00 -08001240 public boolean configureContentView(List<Intent> payloadIntents, Intent[] initialIntents,
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001241 List<ResolveInfo> rList) {
Dianne Hackborn57dd7372015-07-27 18:11:14 -07001242 // The last argument of createAdapter is whether to do special handling
1243 // of the last used choice to highlight it in the list. We need to always
1244 // turn this off when running under voice interaction, since it results in
1245 // a more complicated UI that the current voice interaction flow is not able
1246 // to handle.
Adam Powell7d758002015-05-06 17:49:36 -07001247 mAdapter = createAdapter(this, payloadIntents, initialIntents, rList,
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001248 mLaunchedFromUid, mSupportsAlwaysUseOption && !isVoiceInteraction());
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001249 boolean rebuildCompleted = mAdapter.rebuildList();
Adam Powell7d758002015-05-06 17:49:36 -07001250
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001251 if (useLayoutWithDefault()) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001252 mLayoutId = R.layout.resolver_list_with_default;
Adam Powell7d758002015-05-06 17:49:36 -07001253 } else {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001254 mLayoutId = getLayoutResource();
Adam Powell7d758002015-05-06 17:49:36 -07001255 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001256 setContentView(mLayoutId);
Adam Powell7d758002015-05-06 17:49:36 -07001257
Adam Powell50077352015-05-26 18:01:55 -07001258 int count = mAdapter.getUnfilteredCount();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001259
1260 // We only rebuild asynchronously when we have multiple elements to sort. In the case where
1261 // we're already done, we can check if we should auto-launch immediately.
1262 if (rebuildCompleted) {
1263 if (count == 1 && mAdapter.getOtherProfile() == null) {
1264 // Only one target, so we're a candidate to auto-launch!
1265 final TargetInfo target = mAdapter.targetInfoForPosition(0, false);
1266 if (shouldAutoLaunchSingleChoice(target)) {
1267 safelyStartActivity(target);
1268 mPackageMonitor.unregister();
1269 mRegistered = false;
1270 finish();
1271 return true;
1272 }
Jeff Sharkeycc2ae6b42015-09-29 13:04:46 -07001273 }
1274 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001275
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001276
Alan Viverette51efddb2017-04-05 10:00:01 -04001277 mAdapterView = findViewById(R.id.resolver_list);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001278
1279 if (count == 0 && mAdapter.mPlaceholderCount == 0) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001280 final TextView emptyView = findViewById(R.id.empty);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001281 emptyView.setVisibility(View.VISIBLE);
Adam Powell7d758002015-05-06 17:49:36 -07001282 mAdapterView.setVisibility(View.GONE);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001283 } else {
1284 mAdapterView.setVisibility(View.VISIBLE);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001285 onPrepareAdapterView(mAdapterView, mAdapter);
Adam Powell7d758002015-05-06 17:49:36 -07001286 }
Adam Powell39e94eb2015-09-08 17:01:49 -07001287 return false;
Adam Powell7d758002015-05-06 17:49:36 -07001288 }
1289
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001290 public void onPrepareAdapterView(AbsListView adapterView, ResolveListAdapter adapter) {
Adam Powell7d758002015-05-06 17:49:36 -07001291 final boolean useHeader = adapter.hasFilteredItem();
1292 final ListView listView = adapterView instanceof ListView ? (ListView) adapterView : null;
1293
1294 adapterView.setAdapter(mAdapter);
1295
1296 final ItemClickListener listener = new ItemClickListener();
1297 adapterView.setOnItemClickListener(listener);
1298 adapterView.setOnItemLongClickListener(listener);
1299
shafik69df96322018-12-18 15:41:19 +00001300 if (mSupportsAlwaysUseOption || mUseLayoutForBrowsables) {
Adam Powell7d758002015-05-06 17:49:36 -07001301 listView.setChoiceMode(AbsListView.CHOICE_MODE_SINGLE);
1302 }
1303
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001304 // In case this method is called again (due to activity recreation), avoid adding a new
1305 // header if one is already present.
1306 if (useHeader && listView != null && listView.getHeaderViewsCount() == 0) {
Adam Powell7d758002015-05-06 17:49:36 -07001307 listView.addHeaderView(LayoutInflater.from(this).inflate(
1308 R.layout.resolver_different_item_header, listView, false));
1309 }
Adam Powell24428412015-04-01 17:19:56 -07001310 }
1311
Matt Pietal26038402019-01-08 07:29:34 -05001312 /**
1313 * Configure the area above the app selection list (title, content preview, etc).
1314 */
1315 public void setHeader() {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001316 if (mAdapter.getCount() == 0 && mAdapter.mPlaceholderCount == 0) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001317 final TextView titleView = findViewById(R.id.title);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001318 if (titleView != null) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001319 titleView.setVisibility(View.GONE);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001320 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001321 }
1322
1323 CharSequence title = mTitle != null
1324 ? mTitle
shafik69df96322018-12-18 15:41:19 +00001325 : getTitleForAction(getTargetIntent(), mDefaultTitleResId);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001326
1327 if (!TextUtils.isEmpty(title)) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001328 final TextView titleView = findViewById(R.id.title);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001329 if (titleView != null) {
1330 titleView.setText(title);
1331 }
1332 setTitle(title);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001333 }
1334
Alan Viverette51efddb2017-04-05 10:00:01 -04001335 final ImageView iconView = findViewById(R.id.icon);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001336 final DisplayResolveInfo iconInfo = mAdapter.getFilteredItem();
1337 if (iconView != null && iconInfo != null) {
Matt Pietalaf044ae2019-03-29 06:53:53 -04001338 new LoadIconTask(iconInfo, iconView).execute();
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001339 }
1340 }
1341
shafik69df96322018-12-18 15:41:19 +00001342 private void resetButtonBar() {
1343 if (!mSupportsAlwaysUseOption && !mUseLayoutForBrowsables) {
1344 return;
1345 }
1346 final ViewGroup buttonLayout = findViewById(R.id.button_bar);
1347 if (buttonLayout != null) {
1348 buttonLayout.setVisibility(View.VISIBLE);
Matt Pietal800136a2019-05-08 07:46:39 -04001349 int inset = mSystemWindowInsets != null ? mSystemWindowInsets.bottom : 0;
1350 buttonLayout.setPadding(buttonLayout.getPaddingLeft(), buttonLayout.getPaddingTop(),
Matt Pietal33b0ac12019-05-24 13:47:18 -04001351 buttonLayout.getPaddingRight(), getResources().getDimensionPixelSize(
1352 R.dimen.resolver_button_bar_spacing) + inset);
Matt Pietal800136a2019-05-08 07:46:39 -04001353
shafik69df96322018-12-18 15:41:19 +00001354 mOnceButton = (Button) buttonLayout.findViewById(R.id.button_once);
shafik69df96322018-12-18 15:41:19 +00001355 mAlwaysButton = (Button) buttonLayout.findViewById(R.id.button_always);
1356
Matt Pietal0d6834a2019-06-27 13:27:52 -04001357 resetAlwaysOrOnceButtonBar();
shafik69df96322018-12-18 15:41:19 +00001358 } else {
1359 Log.e(TAG, "Layout unexpectedly does not have a button bar");
1360 }
1361 }
1362
shafik69df96322018-12-18 15:41:19 +00001363 private void resetAlwaysOrOnceButtonBar() {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001364 if (useLayoutWithDefault()
1365 && mAdapter.getFilteredPosition() != ListView.INVALID_POSITION) {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001366 setAlwaysButtonEnabled(true, mAdapter.getFilteredPosition(), false);
1367 mOnceButton.setEnabled(true);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001368 return;
1369 }
1370
1371 // When the items load in, if an item was already selected, enable the buttons
1372 if (mAdapterView != null
1373 && mAdapterView.getCheckedItemPosition() != ListView.INVALID_POSITION) {
1374 setAlwaysButtonEnabled(true, mAdapterView.getCheckedItemPosition(), true);
1375 mOnceButton.setEnabled(true);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001376 }
1377 }
1378
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001379 private boolean useLayoutWithDefault() {
1380 return mSupportsAlwaysUseOption && mAdapter.hasFilteredItem();
1381 }
1382
Adam Powellc412be62015-06-24 13:54:10 -07001383 /**
Jorim Jaggif631ef72017-02-24 13:49:47 +01001384 * If {@code retainInOnStop} is set to true, we will not finish ourselves when onStop gets
1385 * called and we are launched in a new task.
1386 */
1387 protected void setRetainInOnStop(boolean retainInOnStop) {
1388 mRetainInOnStop = retainInOnStop;
1389 }
1390
1391 /**
Adam Powellc412be62015-06-24 13:54:10 -07001392 * Check a simple match for the component of two ResolveInfos.
1393 */
1394 static boolean resolveInfoMatch(ResolveInfo lhs, ResolveInfo rhs) {
1395 return lhs == null ? rhs == null
1396 : lhs.activityInfo == null ? rhs.activityInfo == null
1397 : Objects.equals(lhs.activityInfo.name, rhs.activityInfo.name)
1398 && Objects.equals(lhs.activityInfo.packageName, rhs.activityInfo.packageName);
1399 }
1400
Adam Powell23882512016-01-29 10:21:00 -08001401 public final class DisplayResolveInfo implements TargetInfo {
Adam Powell24428412015-04-01 17:19:56 -07001402 private final ResolveInfo mResolveInfo;
1403 private final CharSequence mDisplayLabel;
1404 private Drawable mDisplayIcon;
Adam Powell00f4aad2015-09-17 13:38:16 -07001405 private Drawable mBadge;
Adam Powell24428412015-04-01 17:19:56 -07001406 private final CharSequence mExtendedInfo;
1407 private final Intent mResolvedIntent;
Adam Powell2ed547e2015-04-29 18:45:04 -07001408 private final List<Intent> mSourceIntents = new ArrayList<>();
Matt Pietala4b30072019-04-04 13:44:36 -04001409 private boolean mIsSuspended;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410
Adam Powell23882512016-01-29 10:21:00 -08001411 public DisplayResolveInfo(Intent originalIntent, ResolveInfo pri, CharSequence pLabel,
Dianne Hackborneb034652009-09-07 00:49:58 -07001412 CharSequence pInfo, Intent pOrigIntent) {
Adam Powell2ed547e2015-04-29 18:45:04 -07001413 mSourceIntents.add(originalIntent);
Adam Powell24428412015-04-01 17:19:56 -07001414 mResolveInfo = pri;
1415 mDisplayLabel = pLabel;
1416 mExtendedInfo = pInfo;
1417
1418 final Intent intent = new Intent(pOrigIntent != null ? pOrigIntent :
Adam Powell2ed547e2015-04-29 18:45:04 -07001419 getReplacementIntent(pri.activityInfo, getTargetIntent()));
Adam Powell24428412015-04-01 17:19:56 -07001420 intent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT
1421 | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
1422 final ActivityInfo ai = mResolveInfo.activityInfo;
1423 intent.setComponent(new ComponentName(ai.applicationInfo.packageName, ai.name));
1424
Matt Pietala4b30072019-04-04 13:44:36 -04001425 mIsSuspended = (ai.applicationInfo.flags & ApplicationInfo.FLAG_SUSPENDED) != 0;
1426
Adam Powell24428412015-04-01 17:19:56 -07001427 mResolvedIntent = intent;
1428 }
1429
Adam Powell2ed547e2015-04-29 18:45:04 -07001430 private DisplayResolveInfo(DisplayResolveInfo other, Intent fillInIntent, int flags) {
1431 mSourceIntents.addAll(other.getAllSourceIntents());
1432 mResolveInfo = other.mResolveInfo;
1433 mDisplayLabel = other.mDisplayLabel;
1434 mDisplayIcon = other.mDisplayIcon;
1435 mExtendedInfo = other.mExtendedInfo;
1436 mResolvedIntent = new Intent(other.mResolvedIntent);
1437 mResolvedIntent.fillIn(fillInIntent, flags);
1438 }
1439
Adam Powell24428412015-04-01 17:19:56 -07001440 public ResolveInfo getResolveInfo() {
1441 return mResolveInfo;
1442 }
1443
1444 public CharSequence getDisplayLabel() {
1445 return mDisplayLabel;
1446 }
1447
1448 public Drawable getDisplayIcon() {
1449 return mDisplayIcon;
1450 }
1451
Alan Viverettece5d92c2015-07-31 16:46:56 -04001452 @Override
Adam Powell2ed547e2015-04-29 18:45:04 -07001453 public TargetInfo cloneFilledIn(Intent fillInIntent, int flags) {
1454 return new DisplayResolveInfo(this, fillInIntent, flags);
1455 }
1456
1457 @Override
1458 public List<Intent> getAllSourceIntents() {
1459 return mSourceIntents;
1460 }
1461
1462 public void addAlternateSourceIntent(Intent alt) {
1463 mSourceIntents.add(alt);
1464 }
1465
Adam Powell24428412015-04-01 17:19:56 -07001466 public void setDisplayIcon(Drawable icon) {
1467 mDisplayIcon = icon;
1468 }
1469
1470 public boolean hasDisplayIcon() {
1471 return mDisplayIcon != null;
1472 }
1473
1474 public CharSequence getExtendedInfo() {
1475 return mExtendedInfo;
1476 }
1477
1478 public Intent getResolvedIntent() {
1479 return mResolvedIntent;
1480 }
1481
1482 @Override
1483 public ComponentName getResolvedComponentName() {
1484 return new ComponentName(mResolveInfo.activityInfo.packageName,
1485 mResolveInfo.activityInfo.name);
1486 }
1487
1488 @Override
1489 public boolean start(Activity activity, Bundle options) {
1490 activity.startActivity(mResolvedIntent, options);
1491 return true;
1492 }
1493
1494 @Override
Alison Cichowlas3e340502018-08-07 17:15:01 -04001495 public boolean startAsCaller(ResolverActivity activity, Bundle options, int userId) {
Alison Cichowlas4691ed42018-11-13 15:59:55 -05001496 if (mEnableChooserDelegate) {
1497 return activity.startAsCallerImpl(mResolvedIntent, options, false, userId);
1498 } else {
1499 activity.startActivityAsCaller(mResolvedIntent, options, null, false, userId);
1500 return true;
1501 }
Adam Powell24428412015-04-01 17:19:56 -07001502 }
1503
1504 @Override
1505 public boolean startAsUser(Activity activity, Bundle options, UserHandle user) {
1506 activity.startActivityAsUser(mResolvedIntent, options, user);
1507 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001508 }
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001509
Matt Pietala4b30072019-04-04 13:44:36 -04001510 public boolean isSuspended() {
1511 return mIsSuspended;
1512 }
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001513 }
1514
1515 List<DisplayResolveInfo> getDisplayList() {
1516 return mAdapter.mDisplayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001517 }
1518
Adam Powell24428412015-04-01 17:19:56 -07001519 /**
1520 * A single target as represented in the chooser.
1521 */
1522 public interface TargetInfo {
1523 /**
1524 * Get the resolved intent that represents this target. Note that this may not be the
1525 * intent that will be launched by calling one of the <code>start</code> methods provided;
1526 * this is the intent that will be credited with the launch.
1527 *
1528 * @return the resolved intent for this target
1529 */
Adam Powell23882512016-01-29 10:21:00 -08001530 Intent getResolvedIntent();
Adam Powell24428412015-04-01 17:19:56 -07001531
1532 /**
1533 * Get the resolved component name that represents this target. Note that this may not
1534 * be the component that will be directly launched by calling one of the <code>start</code>
1535 * methods provided; this is the component that will be credited with the launch.
1536 *
1537 * @return the resolved ComponentName for this target
1538 */
Adam Powell23882512016-01-29 10:21:00 -08001539 ComponentName getResolvedComponentName();
Adam Powell24428412015-04-01 17:19:56 -07001540
1541 /**
1542 * Start the activity referenced by this target.
1543 *
1544 * @param activity calling Activity performing the launch
1545 * @param options ActivityOptions bundle
1546 * @return true if the start completed successfully
1547 */
Adam Powell23882512016-01-29 10:21:00 -08001548 boolean start(Activity activity, Bundle options);
Adam Powell24428412015-04-01 17:19:56 -07001549
1550 /**
1551 * Start the activity referenced by this target as if the ResolverActivity's caller
1552 * was performing the start operation.
1553 *
1554 * @param activity calling Activity (actually) performing the launch
1555 * @param options ActivityOptions bundle
1556 * @param userId userId to start as or {@link UserHandle#USER_NULL} for activity's caller
1557 * @return true if the start completed successfully
1558 */
Alison Cichowlas3e340502018-08-07 17:15:01 -04001559 boolean startAsCaller(ResolverActivity activity, Bundle options, int userId);
Adam Powell24428412015-04-01 17:19:56 -07001560
1561 /**
1562 * Start the activity referenced by this target as a given user.
1563 *
1564 * @param activity calling activity performing the launch
1565 * @param options ActivityOptions bundle
1566 * @param user handle for the user to start the activity as
1567 * @return true if the start completed successfully
1568 */
Adam Powell23882512016-01-29 10:21:00 -08001569 boolean startAsUser(Activity activity, Bundle options, UserHandle user);
Adam Powell24428412015-04-01 17:19:56 -07001570
1571 /**
1572 * Return the ResolveInfo about how and why this target matched the original query
1573 * for available targets.
1574 *
1575 * @return ResolveInfo representing this target's match
1576 */
Adam Powell23882512016-01-29 10:21:00 -08001577 ResolveInfo getResolveInfo();
Adam Powell24428412015-04-01 17:19:56 -07001578
1579 /**
1580 * Return the human-readable text label for this target.
1581 *
1582 * @return user-visible target label
1583 */
Adam Powell23882512016-01-29 10:21:00 -08001584 CharSequence getDisplayLabel();
Adam Powell24428412015-04-01 17:19:56 -07001585
1586 /**
1587 * Return any extended info for this target. This may be used to disambiguate
1588 * otherwise identical targets.
1589 *
1590 * @return human-readable disambig string or null if none present
1591 */
Adam Powell23882512016-01-29 10:21:00 -08001592 CharSequence getExtendedInfo();
Adam Powell24428412015-04-01 17:19:56 -07001593
1594 /**
Mike Digman9c4ae502019-03-19 17:02:25 -07001595 * @return The drawable that should be used to represent this target including badge
Adam Powell24428412015-04-01 17:19:56 -07001596 */
Adam Powell23882512016-01-29 10:21:00 -08001597 Drawable getDisplayIcon();
Adam Powell2ed547e2015-04-29 18:45:04 -07001598
1599 /**
1600 * Clone this target with the given fill-in information.
1601 */
Adam Powell23882512016-01-29 10:21:00 -08001602 TargetInfo cloneFilledIn(Intent fillInIntent, int flags);
Adam Powell2ed547e2015-04-29 18:45:04 -07001603
1604 /**
1605 * @return the list of supported source intents deduped against this single target
1606 */
Adam Powell23882512016-01-29 10:21:00 -08001607 List<Intent> getAllSourceIntents();
Matt Pietala4b30072019-04-04 13:44:36 -04001608
1609 /**
1610 * @return true if this target can be selected by the user
1611 */
1612 boolean isSuspended();
Adam Powell24428412015-04-01 17:19:56 -07001613 }
1614
Adam Powell23882512016-01-29 10:21:00 -08001615 public class ResolveListAdapter extends BaseAdapter {
Adam Powell7d758002015-05-06 17:49:36 -07001616 private final List<Intent> mIntents;
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001617 private final Intent[] mInitialIntents;
1618 private final List<ResolveInfo> mBaseResolveList;
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001619 protected ResolveInfo mLastChosen;
Adam Powell88831a22014-11-20 18:17:00 -08001620 private DisplayResolveInfo mOtherProfile;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001621 private ResolverListController mResolverListController;
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001622 private int mPlaceholderCount;
Matt Pietal0d6834a2019-06-27 13:27:52 -04001623 private boolean mAllTargetsAreBrowsers = false;
Adam Powell24428412015-04-01 17:19:56 -07001624
1625 protected final LayoutInflater mInflater;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001626
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001627 // This one is the list that the Adapter will actually present.
Adam Powell2ed547e2015-04-29 18:45:04 -07001628 List<DisplayResolveInfo> mDisplayList;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001629 List<ResolvedComponentInfo> mUnfilteredResolveList;
Dianne Hackborn6d8dfbd2013-09-23 17:38:51 -07001630
Adam Powell278902c2014-07-12 18:33:22 -07001631 private int mLastChosenPosition = -1;
1632 private boolean mFilterLastUsed;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001633
Adam Powell7d758002015-05-06 17:49:36 -07001634 public ResolveListAdapter(Context context, List<Intent> payloadIntents,
1635 Intent[] initialIntents, List<ResolveInfo> rList, int launchedFromUid,
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001636 boolean filterLastUsed,
1637 ResolverListController resolverListController) {
Adam Powell7d758002015-05-06 17:49:36 -07001638 mIntents = payloadIntents;
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001639 mInitialIntents = initialIntents;
1640 mBaseResolveList = rList;
Dianne Hackborn5320eb82012-05-18 12:05:04 -07001641 mLaunchedFromUid = launchedFromUid;
Adam Powelle9414d92014-07-05 17:44:18 -07001642 mInflater = LayoutInflater.from(context);
Adam Powell2ed547e2015-04-29 18:45:04 -07001643 mDisplayList = new ArrayList<>();
Adam Powell278902c2014-07-12 18:33:22 -07001644 mFilterLastUsed = filterLastUsed;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001645 mResolverListController = resolverListController;
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001646 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001647
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001648 public void handlePackagesChanged() {
1649 rebuildList();
Esteban Talavera6de72662014-12-11 17:54:07 +00001650 if (getCount() == 0) {
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001651 // We no longer have any items... just finish the activity.
1652 finish();
Adam Powellc5878612012-05-04 18:42:38 -07001653 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001654 }
1655
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001656 public void setPlaceholderCount(int count) {
1657 mPlaceholderCount = count;
1658 }
1659
Sumir Katariadb688af2017-05-10 17:33:47 -07001660 public int getPlaceholderCount() { return mPlaceholderCount; }
1661
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001662 @Nullable
Adam Powell278902c2014-07-12 18:33:22 -07001663 public DisplayResolveInfo getFilteredItem() {
1664 if (mFilterLastUsed && mLastChosenPosition >= 0) {
1665 // Not using getItem since it offsets to dodge this position for the list
Adam Powell2ed547e2015-04-29 18:45:04 -07001666 return mDisplayList.get(mLastChosenPosition);
Adam Powell278902c2014-07-12 18:33:22 -07001667 }
1668 return null;
1669 }
1670
Adam Powell88831a22014-11-20 18:17:00 -08001671 public DisplayResolveInfo getOtherProfile() {
1672 return mOtherProfile;
1673 }
1674
Adam Powell278902c2014-07-12 18:33:22 -07001675 public int getFilteredPosition() {
1676 if (mFilterLastUsed && mLastChosenPosition >= 0) {
1677 return mLastChosenPosition;
1678 }
1679 return AbsListView.INVALID_POSITION;
1680 }
1681
1682 public boolean hasFilteredItem() {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001683 return mFilterLastUsed && mLastChosen != null;
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -07001684 }
1685
Adam Powella182e452015-07-06 16:57:56 -07001686 public float getScore(DisplayResolveInfo target) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001687 return mResolverListController.getScore(target);
Adam Powella182e452015-07-06 16:57:56 -07001688 }
1689
Kang Li0cef910d2017-01-05 09:14:36 -08001690 public void updateModel(ComponentName componentName) {
1691 mResolverListController.updateModel(componentName);
1692 }
1693
Kang Li9fa2a2c2017-01-06 13:33:24 -08001694 public void updateChooserCounts(String packageName, int userId, String action) {
1695 mResolverListController.updateChooserCounts(packageName, userId, action);
1696 }
1697
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001698 /**
Matt Pietal0d6834a2019-06-27 13:27:52 -04001699 * @return true if all items in the display list are defined as browsers by
1700 * ResolveInfo.handleAllWebDataURI
1701 */
1702 public boolean areAllTargetsBrowsers() {
1703 return mAllTargetsAreBrowsers;
1704 }
1705
1706 /**
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001707 * Rebuild the list of resolvers. In some cases some parts will need some asynchronous work
1708 * to complete.
1709 *
1710 * @return Whether or not the list building is completed.
1711 */
1712 protected boolean rebuildList() {
Adam Powell2ed547e2015-04-29 18:45:04 -07001713 List<ResolvedComponentInfo> currentResolveList = null;
Sudheer Shanka7e64e102015-01-23 10:37:45 +00001714 // Clear the value of mOtherProfile from previous call.
1715 mOtherProfile = null;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001716 mLastChosen = null;
1717 mLastChosenPosition = -1;
Matt Pietal0d6834a2019-06-27 13:27:52 -04001718 mAllTargetsAreBrowsers = false;
Adam Powell2ed547e2015-04-29 18:45:04 -07001719 mDisplayList.clear();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001720 if (mBaseResolveList != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001721 currentResolveList = mUnfilteredResolveList = new ArrayList<>();
1722 mResolverListController.addResolveListDedupe(currentResolveList,
1723 getTargetIntent(),
1724 mBaseResolveList);
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001725 } else {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001726 currentResolveList = mUnfilteredResolveList =
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001727 mResolverListController.getResolversForIntent(shouldGetResolvedFilter(),
1728 shouldGetActivityMetadata(),
1729 mIntents);
1730 if (currentResolveList == null) {
1731 processSortedList(currentResolveList);
1732 return true;
Adam Powell2ed547e2015-04-29 18:45:04 -07001733 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001734 List<ResolvedComponentInfo> originalList =
1735 mResolverListController.filterIneligibleActivities(currentResolveList,
1736 true);
1737 if (originalList != null) {
1738 mUnfilteredResolveList = originalList;
Dianne Hackborn5320eb82012-05-18 12:05:04 -07001739 }
Jeff Hamiltond88e9aa2011-01-24 14:53:00 -06001740 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001741
1742 // So far we only support a single other profile at a time.
1743 // The first one we see gets special treatment.
1744 for (ResolvedComponentInfo info : currentResolveList) {
1745 if (info.getResolveInfoAt(0).targetUserId != UserHandle.USER_CURRENT) {
1746 mOtherProfile = new DisplayResolveInfo(info.getIntentAt(0),
1747 info.getResolveInfoAt(0),
1748 info.getResolveInfoAt(0).loadLabel(mPm),
1749 info.getResolveInfoAt(0).loadLabel(mPm),
1750 getReplacementIntent(info.getResolveInfoAt(0).activityInfo,
1751 info.getIntentAt(0)));
1752 currentResolveList.remove(info);
1753 break;
1754 }
1755 }
1756
1757 if (mOtherProfile == null) {
1758 try {
1759 mLastChosen = mResolverListController.getLastChosen();
1760 } catch (RemoteException re) {
1761 Log.d(TAG, "Error calling getLastChosenActivity\n" + re);
1762 }
1763 }
1764
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001765 int N;
You Kim43a5070e2012-11-21 23:23:45 +09001766 if ((currentResolveList != null) && ((N = currentResolveList.size()) > 0)) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001767 // We only care about fixing the unfilteredList if the current resolve list and
1768 // current resolve list are currently the same.
1769 List<ResolvedComponentInfo> originalList =
1770 mResolverListController.filterLowPriority(currentResolveList,
1771 mUnfilteredResolveList == currentResolveList);
1772 if (originalList != null) {
1773 mUnfilteredResolveList = originalList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001774 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001775
Hakan Seyalioglu873cbfd2017-02-21 19:23:43 -08001776 if (currentResolveList.size() > 1) {
Sumir Katariadb688af2017-05-10 17:33:47 -07001777 int placeholderCount = currentResolveList.size();
1778 if (useLayoutWithDefault()) {
1779 --placeholderCount;
1780 }
1781 setPlaceholderCount(placeholderCount);
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001782 AsyncTask<List<ResolvedComponentInfo>,
1783 Void,
1784 List<ResolvedComponentInfo>> sortingTask =
1785 new AsyncTask<List<ResolvedComponentInfo>,
1786 Void,
1787 List<ResolvedComponentInfo>>() {
1788 @Override
1789 protected List<ResolvedComponentInfo> doInBackground(
1790 List<ResolvedComponentInfo>... params) {
1791 mResolverListController.sort(params[0]);
1792 return params[0];
1793 }
1794
1795 @Override
1796 protected void onPostExecute(List<ResolvedComponentInfo> sortedComponents) {
1797 processSortedList(sortedComponents);
Matt Pietal74c6ed02019-04-18 13:38:46 -04001798 bindProfileView();
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001799 notifyDataSetChanged();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001800 }
1801 };
1802 sortingTask.execute(currentResolveList);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001803 postListReadyRunnable();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001804 return false;
1805 } else {
1806 processSortedList(currentResolveList);
1807 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001808 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001809 } else {
1810 processSortedList(currentResolveList);
1811 return true;
1812 }
1813 }
1814
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001815
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001816 private void processSortedList(List<ResolvedComponentInfo> sortedComponents) {
1817 int N;
1818 if (sortedComponents != null && (N = sortedComponents.size()) != 0) {
Matt Pietal0d6834a2019-06-27 13:27:52 -04001819 mAllTargetsAreBrowsers = mUseLayoutForBrowsables;
1820
Dianne Hackborneb034652009-09-07 00:49:58 -07001821 // First put the initial items at the top.
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001822 if (mInitialIntents != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001823 for (int i = 0; i < mInitialIntents.length; i++) {
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -08001824 Intent ii = mInitialIntents[i];
Dianne Hackborneb034652009-09-07 00:49:58 -07001825 if (ii == null) {
1826 continue;
1827 }
1828 ActivityInfo ai = ii.resolveActivityInfo(
1829 getPackageManager(), 0);
1830 if (ai == null) {
Adam Powell09a65602014-07-20 16:23:14 -07001831 Log.w(TAG, "No activity found for " + ii);
Dianne Hackborneb034652009-09-07 00:49:58 -07001832 continue;
1833 }
1834 ResolveInfo ri = new ResolveInfo();
1835 ri.activityInfo = ai;
Nicolas Prevot1a815922014-10-10 16:22:38 +01001836 UserManager userManager =
1837 (UserManager) getSystemService(Context.USER_SERVICE);
Dianne Hackborneb034652009-09-07 00:49:58 -07001838 if (ii instanceof LabeledIntent) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001839 LabeledIntent li = (LabeledIntent) ii;
Dianne Hackborneb034652009-09-07 00:49:58 -07001840 ri.resolvePackageName = li.getSourcePackage();
1841 ri.labelRes = li.getLabelResource();
1842 ri.nonLocalizedLabel = li.getNonLocalizedLabel();
1843 ri.icon = li.getIconResource();
Sudheer Shanka9ded7602015-05-19 21:17:25 +01001844 ri.iconResourceId = ri.icon;
1845 }
1846 if (userManager.isManagedProfile()) {
1847 ri.noResourceId = true;
1848 ri.icon = 0;
Dianne Hackborneb034652009-09-07 00:49:58 -07001849 }
Matt Pietal0d6834a2019-06-27 13:27:52 -04001850 mAllTargetsAreBrowsers &= ri.handleAllWebDataURI;
1851
Adam Powell2ed547e2015-04-29 18:45:04 -07001852 addResolveInfo(new DisplayResolveInfo(ii, ri,
Dianne Hackborneb034652009-09-07 00:49:58 -07001853 ri.loadLabel(getPackageManager()), null, ii));
1854 }
1855 }
You Kim43a5070e2012-11-21 23:23:45 +09001856
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001857
Mike Digmanba232682019-03-27 14:55:26 -07001858 for (ResolvedComponentInfo rci : sortedComponents) {
1859 final ResolveInfo ri = rci.getResolveInfoAt(0);
1860 if (ri != null) {
Matt Pietal0d6834a2019-06-27 13:27:52 -04001861 mAllTargetsAreBrowsers &= ri.handleAllWebDataURI;
1862
Mike Digmanba232682019-03-27 14:55:26 -07001863 ResolveInfoPresentationGetter pg = makePresentationGetter(ri);
1864 addResolveInfoWithAlternates(rci, pg.getSubLabel(), pg.getLabel());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001865 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001866 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001867 }
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001868
Matt Pietal553d8a42019-09-10 09:33:11 -04001869 sendVoiceChoicesIfNeeded();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001870 postListReadyRunnable();
1871 }
1872
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001873
1874
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001875 /**
1876 * Some necessary methods for creating the list are initiated in onCreate and will also
1877 * determine the layout known. We therefore can't update the UI inline and post to the
1878 * handler thread to update after the current task is finished.
1879 */
1880 private void postListReadyRunnable() {
1881 if (mPostListReadyRunnable == null) {
1882 mPostListReadyRunnable = new Runnable() {
1883 @Override
1884 public void run() {
Matt Pietal26038402019-01-08 07:29:34 -05001885 setHeader();
shafik69df96322018-12-18 15:41:19 +00001886 resetButtonBar();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001887 onListRebuilt();
1888 mPostListReadyRunnable = null;
1889 }
1890 };
1891 getMainThreadHandler().post(mPostListReadyRunnable);
1892 }
Adam Powell24428412015-04-01 17:19:56 -07001893 }
1894
1895 public void onListRebuilt() {
Xiaohui Chen393c8012017-02-14 14:55:07 -08001896 int count = getUnfilteredCount();
1897 if (count == 1 && getOtherProfile() == null) {
1898 // Only one target, so we're a candidate to auto-launch!
1899 final TargetInfo target = targetInfoForPosition(0, false);
1900 if (shouldAutoLaunchSingleChoice(target)) {
1901 safelyStartActivity(target);
1902 finish();
1903 }
1904 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001905 }
1906
Adam Powellc6d5e3a2015-04-23 12:22:20 -07001907 public boolean shouldGetResolvedFilter() {
1908 return mFilterLastUsed;
1909 }
1910
Adam Powell2ed547e2015-04-29 18:45:04 -07001911 private void addResolveInfoWithAlternates(ResolvedComponentInfo rci,
1912 CharSequence extraInfo, CharSequence roLabel) {
1913 final int count = rci.getCount();
1914 final Intent intent = rci.getIntentAt(0);
1915 final ResolveInfo add = rci.getResolveInfoAt(0);
1916 final Intent replaceIntent = getReplacementIntent(add.activityInfo, intent);
1917 final DisplayResolveInfo dri = new DisplayResolveInfo(intent, add, roLabel,
1918 extraInfo, replaceIntent);
1919 addResolveInfo(dri);
1920 if (replaceIntent == intent) {
1921 // Only add alternates if we didn't get a specific replacement from
1922 // the caller. If we have one it trumps potential alternates.
1923 for (int i = 1, N = count; i < N; i++) {
1924 final Intent altIntent = rci.getIntentAt(i);
1925 dri.addAlternateSourceIntent(altIntent);
1926 }
1927 }
1928 updateLastChosenPosition(add);
1929 }
1930
Esteban Talavera6de72662014-12-11 17:54:07 +00001931 private void updateLastChosenPosition(ResolveInfo info) {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001932 // If another profile is present, ignore the last chosen entry.
1933 if (mOtherProfile != null) {
1934 mLastChosenPosition = -1;
1935 return;
1936 }
Esteban Talavera6de72662014-12-11 17:54:07 +00001937 if (mLastChosen != null
1938 && mLastChosen.activityInfo.packageName.equals(info.activityInfo.packageName)
1939 && mLastChosen.activityInfo.name.equals(info.activityInfo.name)) {
Adam Powell2ed547e2015-04-29 18:45:04 -07001940 mLastChosenPosition = mDisplayList.size() - 1;
Esteban Talavera6de72662014-12-11 17:54:07 +00001941 }
1942 }
1943
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001944 // We assume that at this point we've already filtered out the only intent for a different
1945 // targetUserId which we're going to use.
Adam Powell88831a22014-11-20 18:17:00 -08001946 private void addResolveInfo(DisplayResolveInfo dri) {
Kang Li6afa4f22017-06-23 12:54:38 -07001947 if (dri != null && dri.mResolveInfo != null
1948 && dri.mResolveInfo.targetUserId == UserHandle.USER_CURRENT) {
1949 // Checks if this info is already listed in display.
1950 for (DisplayResolveInfo existingInfo : mDisplayList) {
1951 if (resolveInfoMatch(dri.mResolveInfo, existingInfo.mResolveInfo)) {
1952 return;
1953 }
1954 }
Adam Powell2ed547e2015-04-29 18:45:04 -07001955 mDisplayList.add(dri);
Adam Powell88831a22014-11-20 18:17:00 -08001956 }
1957 }
1958
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001959 @Nullable
Adam Powell278902c2014-07-12 18:33:22 -07001960 public ResolveInfo resolveInfoForPosition(int position, boolean filtered) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001961 TargetInfo target = targetInfoForPosition(position, filtered);
1962 if (target != null) {
1963 return target.getResolveInfo();
1964 }
1965 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001966 }
1967
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001968 @Nullable
Adam Powell24428412015-04-01 17:19:56 -07001969 public TargetInfo targetInfoForPosition(int position, boolean filtered) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001970 if (filtered) {
1971 return getItem(position);
1972 }
1973 if (mDisplayList.size() > position) {
1974 return mDisplayList.get(position);
1975 }
1976 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001977 }
1978
1979 public int getCount() {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001980 int totalSize = mDisplayList == null || mDisplayList.isEmpty() ? mPlaceholderCount :
1981 mDisplayList.size();
Adam Powell278902c2014-07-12 18:33:22 -07001982 if (mFilterLastUsed && mLastChosenPosition >= 0) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001983 totalSize--;
Adam Powell278902c2014-07-12 18:33:22 -07001984 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001985 return totalSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 }
1987
Adam Powell50077352015-05-26 18:01:55 -07001988 public int getUnfilteredCount() {
1989 return mDisplayList.size();
1990 }
1991
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001992 @Nullable
Adam Powell24428412015-04-01 17:19:56 -07001993 public TargetInfo getItem(int position) {
Adam Powell278902c2014-07-12 18:33:22 -07001994 if (mFilterLastUsed && mLastChosenPosition >= 0 && position >= mLastChosenPosition) {
1995 position++;
1996 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001997 if (mDisplayList.size() > position) {
1998 return mDisplayList.get(position);
1999 } else {
2000 return null;
2001 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002002 }
2003
2004 public long getItemId(int position) {
2005 return position;
2006 }
2007
Adam Powell23882512016-01-29 10:21:00 -08002008 public int getDisplayResolveInfoCount() {
Adam Powell2ed547e2015-04-29 18:45:04 -07002009 return mDisplayList.size();
Adam Powell24428412015-04-01 17:19:56 -07002010 }
2011
Adam Powell23882512016-01-29 10:21:00 -08002012 public DisplayResolveInfo getDisplayResolveInfo(int index) {
Adam Powell2ed547e2015-04-29 18:45:04 -07002013 // Used to query services. We only query services for primary targets, not alternates.
2014 return mDisplayList.get(index);
Adam Powell24428412015-04-01 17:19:56 -07002015 }
2016
2017 public final View getView(int position, View convertView, ViewGroup parent) {
Adam Powellfd1e93d2014-09-07 16:52:22 -07002018 View view = convertView;
2019 if (view == null) {
Adam Powell24428412015-04-01 17:19:56 -07002020 view = createView(parent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002021 }
Adam Powell7d758002015-05-06 17:49:36 -07002022 onBindView(view, getItem(position));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 return view;
2024 }
2025
Adam Powell7d758002015-05-06 17:49:36 -07002026 public final View createView(ViewGroup parent) {
2027 final View view = onCreateView(parent);
2028 final ViewHolder holder = new ViewHolder(view);
2029 view.setTag(holder);
2030 return view;
2031 }
2032
2033 public View onCreateView(ViewGroup parent) {
Adam Powell24428412015-04-01 17:19:56 -07002034 return mInflater.inflate(
2035 com.android.internal.R.layout.resolve_list_item, parent, false);
2036 }
2037
Adam Powell7d758002015-05-06 17:49:36 -07002038 public final void bindView(int position, View view) {
2039 onBindView(view, getItem(position));
2040 }
2041
Mike Digmanba232682019-03-27 14:55:26 -07002042 protected void onBindView(View view, TargetInfo info) {
Adam Powell0256c6f2013-05-29 16:42:33 -07002043 final ViewHolder holder = (ViewHolder) view.getTag();
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08002044 if (info == null) {
2045 holder.icon.setImageDrawable(
2046 getDrawable(R.drawable.resolver_icon_placeholder));
2047 return;
2048 }
Mike Digmanba232682019-03-27 14:55:26 -07002049
Adam Powell63b31692015-09-28 10:45:00 -07002050 final CharSequence label = info.getDisplayLabel();
2051 if (!TextUtils.equals(holder.text.getText(), label)) {
2052 holder.text.setText(info.getDisplayLabel());
2053 }
Mike Digmanba232682019-03-27 14:55:26 -07002054
2055 // Always show a subLabel for visual consistency across list items. Show an empty
2056 // subLabel if the subLabel is the same as the label
2057 CharSequence subLabel = info.getExtendedInfo();
2058 if (TextUtils.equals(label, subLabel)) subLabel = null;
2059
2060 if (!TextUtils.equals(holder.text2.getText(), subLabel)) {
2061 holder.text2.setText(subLabel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002062 }
Mike Digmanba232682019-03-27 14:55:26 -07002063
Matt Pietala4b30072019-04-04 13:44:36 -04002064 if (info.isSuspended()) {
2065 holder.icon.setColorFilter(mSuspendedMatrixColorFilter);
2066 } else {
2067 holder.icon.setColorFilter(null);
2068 }
2069
Adam Powell24428412015-04-01 17:19:56 -07002070 if (info instanceof DisplayResolveInfo
2071 && !((DisplayResolveInfo) info).hasDisplayIcon()) {
Matt Pietalaf044ae2019-03-29 06:53:53 -04002072 new LoadIconTask((DisplayResolveInfo) info, holder.icon).execute();
2073 } else {
2074 holder.icon.setImageDrawable(info.getDisplayIcon());
Dianne Hackborneb034652009-09-07 00:49:58 -07002075 }
Adam Powell0256c6f2013-05-29 16:42:33 -07002076 }
2077 }
2078
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04002079
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08002080 @VisibleForTesting
2081 public static final class ResolvedComponentInfo {
Adam Powell2ed547e2015-04-29 18:45:04 -07002082 public final ComponentName name;
2083 private final List<Intent> mIntents = new ArrayList<>();
2084 private final List<ResolveInfo> mResolveInfos = new ArrayList<>();
2085
2086 public ResolvedComponentInfo(ComponentName name, Intent intent, ResolveInfo info) {
2087 this.name = name;
2088 add(intent, info);
2089 }
2090
2091 public void add(Intent intent, ResolveInfo info) {
2092 mIntents.add(intent);
2093 mResolveInfos.add(info);
2094 }
2095
2096 public int getCount() {
2097 return mIntents.size();
2098 }
2099
2100 public Intent getIntentAt(int index) {
2101 return index >= 0 ? mIntents.get(index) : null;
2102 }
2103
2104 public ResolveInfo getResolveInfoAt(int index) {
2105 return index >= 0 ? mResolveInfos.get(index) : null;
2106 }
2107
2108 public int findIntent(Intent intent) {
2109 for (int i = 0, N = mIntents.size(); i < N; i++) {
2110 if (intent.equals(mIntents.get(i))) {
2111 return i;
2112 }
2113 }
2114 return -1;
2115 }
2116
2117 public int findResolveInfo(ResolveInfo info) {
2118 for (int i = 0, N = mResolveInfos.size(); i < N; i++) {
2119 if (info.equals(mResolveInfos.get(i))) {
2120 return i;
2121 }
2122 }
2123 return -1;
2124 }
2125 }
2126
Adam Powell0256c6f2013-05-29 16:42:33 -07002127 static class ViewHolder {
Mike Digman4b83c212019-05-03 10:17:35 -07002128 public View itemView;
2129 public Drawable defaultItemViewBackground;
2130
Adam Powell0256c6f2013-05-29 16:42:33 -07002131 public TextView text;
2132 public TextView text2;
2133 public ImageView icon;
2134
2135 public ViewHolder(View view) {
Mike Digman4b83c212019-05-03 10:17:35 -07002136 itemView = view;
2137 defaultItemViewBackground = view.getBackground();
Adam Powell0256c6f2013-05-29 16:42:33 -07002138 text = (TextView) view.findViewById(com.android.internal.R.id.text1);
2139 text2 = (TextView) view.findViewById(com.android.internal.R.id.text2);
2140 icon = (ImageView) view.findViewById(R.id.icon);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002141 }
2142 }
2143
Adam Powell7d758002015-05-06 17:49:36 -07002144 class ItemClickListener implements AdapterView.OnItemClickListener,
2145 AdapterView.OnItemLongClickListener {
2146 @Override
2147 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
2148 final ListView listView = parent instanceof ListView ? (ListView) parent : null;
2149 if (listView != null) {
2150 position -= listView.getHeaderViewsCount();
2151 }
2152 if (position < 0) {
2153 // Header views don't count.
2154 return;
2155 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08002156 // If we're still loading, we can't yet enable the buttons.
2157 if (mAdapter.resolveInfoForPosition(position, true) == null) {
2158 return;
2159 }
2160
Adam Powell7d758002015-05-06 17:49:36 -07002161 final int checkedPos = mAdapterView.getCheckedItemPosition();
2162 final boolean hasValidSelection = checkedPos != ListView.INVALID_POSITION;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08002163 if (!useLayoutWithDefault()
Ruchi Kandoi65d76c12017-08-18 13:05:39 -07002164 && (!hasValidSelection || mLastSelected != checkedPos)
Matt Pietal0d6834a2019-06-27 13:27:52 -04002165 && mAlwaysButton != null) {
2166 setAlwaysButtonEnabled(hasValidSelection, checkedPos, true);
Adam Powell7d758002015-05-06 17:49:36 -07002167 mOnceButton.setEnabled(hasValidSelection);
2168 if (hasValidSelection) {
2169 mAdapterView.smoothScrollToPosition(checkedPos);
2170 }
2171 mLastSelected = checkedPos;
2172 } else {
2173 startSelected(position, false, true);
2174 }
2175 }
Adam Powell2d809622012-03-22 15:24:43 -07002176
2177 @Override
2178 public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
Adam Powell7d758002015-05-06 17:49:36 -07002179 final ListView listView = parent instanceof ListView ? (ListView) parent : null;
2180 if (listView != null) {
2181 position -= listView.getHeaderViewsCount();
Adam Powell24428412015-04-01 17:19:56 -07002182 }
Adam Powellfd1e93d2014-09-07 16:52:22 -07002183 if (position < 0) {
2184 // Header views don't count.
2185 return false;
2186 }
Adam Powell278902c2014-07-12 18:33:22 -07002187 ResolveInfo ri = mAdapter.resolveInfoForPosition(position, true);
Adam Powell23882512016-01-29 10:21:00 -08002188 showTargetDetails(ri);
Adam Powell2d809622012-03-22 15:24:43 -07002189 return true;
2190 }
2191
2192 }
Adam Powell0256c6f2013-05-29 16:42:33 -07002193
Matt Pietalaf044ae2019-03-29 06:53:53 -04002194 class LoadIconTask extends AsyncTask<Void, Void, Drawable> {
Adam Powell24428412015-04-01 17:19:56 -07002195 protected final DisplayResolveInfo mDisplayResolveInfo;
2196 private final ResolveInfo mResolveInfo;
Matt Pietalaf044ae2019-03-29 06:53:53 -04002197 private final ImageView mTargetView;
Adam Powell24428412015-04-01 17:19:56 -07002198
Matt Pietalaf044ae2019-03-29 06:53:53 -04002199 LoadIconTask(DisplayResolveInfo dri, ImageView target) {
Adam Powell24428412015-04-01 17:19:56 -07002200 mDisplayResolveInfo = dri;
2201 mResolveInfo = dri.getResolveInfo();
Matt Pietalaf044ae2019-03-29 06:53:53 -04002202 mTargetView = target;
Adam Powell0256c6f2013-05-29 16:42:33 -07002203 }
2204
2205 @Override
Adam Powell24428412015-04-01 17:19:56 -07002206 protected Drawable doInBackground(Void... params) {
2207 return loadIconForResolveInfo(mResolveInfo);
2208 }
2209
2210 @Override
2211 protected void onPostExecute(Drawable d) {
Matt Pietal74c6ed02019-04-18 13:38:46 -04002212 if (mAdapter.getOtherProfile() == mDisplayResolveInfo) {
Adam Powell88831a22014-11-20 18:17:00 -08002213 bindProfileView();
Matt Pietalaf044ae2019-03-29 06:53:53 -04002214 } else {
2215 mDisplayResolveInfo.setDisplayIcon(d);
2216 mTargetView.setImageDrawable(d);
Adam Powell88831a22014-11-20 18:17:00 -08002217 }
Adam Powell278902c2014-07-12 18:33:22 -07002218 }
2219 }
Adam Powell09a65602014-07-20 16:23:14 -07002220
Dianne Hackbornec452d92014-11-11 17:16:56 -08002221 static final boolean isSpecificUriMatch(int match) {
2222 match = match&IntentFilter.MATCH_CATEGORY_MASK;
2223 return match >= IntentFilter.MATCH_CATEGORY_HOST
2224 && match <= IntentFilter.MATCH_CATEGORY_PATH;
2225 }
2226
Adam Powell4c470d62015-06-19 17:46:17 -07002227 static class PickTargetOptionRequest extends PickOptionRequest {
2228 public PickTargetOptionRequest(@Nullable Prompt prompt, Option[] options,
2229 @Nullable Bundle extras) {
2230 super(prompt, options, extras);
2231 }
2232
2233 @Override
2234 public void onCancel() {
2235 super.onCancel();
2236 final ResolverActivity ra = (ResolverActivity) getActivity();
2237 if (ra != null) {
2238 ra.mPickOptionRequest = null;
2239 ra.finish();
2240 }
2241 }
2242
2243 @Override
2244 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) {
2245 super.onPickOptionResult(finished, selections, result);
2246 if (selections.length != 1) {
2247 // TODO In a better world we would filter the UI presented here and let the
2248 // user refine. Maybe later.
2249 return;
2250 }
2251
2252 final ResolverActivity ra = (ResolverActivity) getActivity();
2253 if (ra != null) {
2254 final TargetInfo ti = ra.mAdapter.getItem(selections[0].getIndex());
2255 if (ra.onTargetSelected(ti, false)) {
2256 ra.mPickOptionRequest = null;
2257 ra.finish();
2258 }
2259 }
2260 }
2261 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002262}