blob: 0997cf87d592fa08452d15f453b13392418c75f9 [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;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070026import android.app.ActivityTaskManager;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -070027import android.app.ActivityThread;
Adam Powell4c470d62015-06-19 17:46:17 -070028import android.app.VoiceInteractor.PickOptionRequest;
29import android.app.VoiceInteractor.PickOptionRequest.Option;
30import android.app.VoiceInteractor.Prompt;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.content.ComponentName;
32import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.content.Intent;
34import android.content.IntentFilter;
35import android.content.pm.ActivityInfo;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010036import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.pm.PackageManager;
Adam Powellc5878612012-05-04 18:42:38 -070038import android.content.pm.PackageManager.NameNotFoundException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.content.pm.ResolveInfo;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010040import android.content.pm.UserInfo;
Jiongxuan Gao3365b162016-11-24 20:20:27 +090041import android.content.res.Configuration;
Adam Powellc5878612012-05-04 18:42:38 -070042import android.content.res.Resources;
Matt Pietal800136a2019-05-08 07:46:39 -040043import android.graphics.Insets;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.net.Uri;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010045import android.os.Build;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.os.Bundle;
Alison Cichowlas3e340502018-08-07 17:15:01 -040047import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.os.PatternMatcher;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080049import android.os.RemoteException;
Jeff Sharkey37355a92016-02-05 16:19:10 -070050import android.os.StrictMode;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070051import android.os.UserHandle;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010052import android.os.UserManager;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080053import android.provider.MediaStore;
54import android.provider.Settings;
55import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.util.Log;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080057import android.util.Slog;
Adam Powell2d809622012-03-22 15:24:43 -070058import android.view.LayoutInflater;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.view.View;
60import android.view.ViewGroup;
Matt Pietal800136a2019-05-08 07:46:39 -040061import android.view.ViewGroup.LayoutParams;
62import android.view.WindowInsets;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080063import android.widget.AbsListView;
Adam Powell2d809622012-03-22 15:24:43 -070064import android.widget.AdapterView;
Adam Powellc5878612012-05-04 18:42:38 -070065import android.widget.Button;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066import android.widget.ImageView;
Adam Powell2d809622012-03-22 15:24:43 -070067import android.widget.ListView;
Matt Pietal800136a2019-05-08 07:46:39 -040068import android.widget.Space;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069import android.widget.TextView;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +010070import android.widget.Toast;
Hyunyoung Song16b7af42018-10-05 14:00:42 -070071
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080072import com.android.internal.R;
73import com.android.internal.annotations.VisibleForTesting;
arangelovb0802dc2019-10-18 18:03:44 +010074import com.android.internal.app.chooser.DisplayResolveInfo;
75import com.android.internal.app.chooser.TargetInfo;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -080076import com.android.internal.content.PackageMonitor;
Clara Bayarrifa902aa2016-04-13 14:45:08 +010077import com.android.internal.logging.MetricsLogger;
Tamas Berghammer383db5eb2016-06-22 15:21:38 +010078import com.android.internal.logging.nano.MetricsProto;
Adam Powell4f6c2052014-07-07 18:49:10 -070079import com.android.internal.widget.ResolverDrawerLayout;
Adam Powell2d809622012-03-22 15:24:43 -070080
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081import java.util.ArrayList;
Clara Bayarrifa902aa2016-04-13 14:45:08 +010082import java.util.Arrays;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083import java.util.Iterator;
84import java.util.List;
Adam Powellc412be62015-06-24 13:54:10 -070085import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086import java.util.Set;
87
88/**
89 * This activity is displayed when the system attempts to start an Intent for
90 * which there is more than one matching activity, allowing the user to decide
91 * which to go to. It is not normally used directly by application developers.
92 */
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -080093@UiThread
arangelovb0802dc2019-10-18 18:03:44 +010094public class ResolverActivity extends Activity implements
95 ResolverListAdapter.ResolverListCommunicator {
Alison Cichowlas4691ed42018-11-13 15:59:55 -050096
Andrei Onea15884392019-03-22 17:28:11 +000097 @UnsupportedAppUsage
arangelovb0802dc2019-10-18 18:03:44 +010098 protected ResolverListAdapter mAdapter;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -070099 private boolean mSafeForwardingMode;
Zhen Zhangbde7b462019-11-11 11:49:33 -0800100 private AbsListView mAdapterView;
Adam Powellc5878612012-05-04 18:42:38 -0700101 private Button mAlwaysButton;
102 private Button mOnceButton;
Matt Pietal74c6ed02019-04-18 13:38:46 -0400103 protected View mProfileView;
Adam Powell24428412015-04-01 17:19:56 -0700104 private int mLastSelected = AbsListView.INVALID_POSITION;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100105 private boolean mResolvingHome = false;
Sander Alewijnsef6545332014-10-31 12:39:02 +0000106 private int mProfileSwitchMessageId = -1;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800107 private int mLayoutId;
arangelovb0802dc2019-10-18 18:03:44 +0100108 @VisibleForTesting
109 protected final ArrayList<Intent> mIntents = new ArrayList<>();
Adam Powell4c470d62015-06-19 17:46:17 -0700110 private PickTargetOptionRequest mPickOptionRequest;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800111 private String mReferrerPackage;
Hakan Seyalioglu33550122017-01-06 19:54:43 -0800112 private CharSequence mTitle;
113 private int mDefaultTitleResId;
arangelovb0802dc2019-10-18 18:03:44 +0100114
115 @VisibleForTesting
116 protected boolean mUseLayoutForBrowsables;
Adam Powell09a65602014-07-20 16:23:14 -0700117
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800118 // Whether or not this activity supports choosing a default handler for the intent.
arangelovb0802dc2019-10-18 18:03:44 +0100119 @VisibleForTesting
120 protected boolean mSupportsAlwaysUseOption;
Adam Powell63b31692015-09-28 10:45:00 -0700121 protected ResolverDrawerLayout mResolverDrawerLayout;
Andrei Onea15884392019-03-22 17:28:11 +0000122 @UnsupportedAppUsage
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800123 protected PackageManager mPm;
124 protected int mLaunchedFromUid;
125
126 private static final String TAG = "ResolverActivity";
127 private static final boolean DEBUG = false;
Adam Powell63b31692015-09-28 10:45:00 -0700128
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700129 private boolean mRegistered;
Jorim Jaggif631ef72017-02-24 13:49:47 +0100130
Matt Pietal800136a2019-05-08 07:46:39 -0400131 protected Insets mSystemWindowInsets = null;
132 private Space mFooterSpacer = null;
133
Jorim Jaggif631ef72017-02-24 13:49:47 +0100134 /** See {@link #setRetainInOnStop}. */
135 private boolean mRetainInOnStop;
136
Matt Pietal0d6834a2019-06-27 13:27:52 -0400137 private static final String EXTRA_SHOW_FRAGMENT_ARGS = ":settings:show_fragment_args";
138 private static final String EXTRA_FRAGMENT_ARG_KEY = ":settings:fragment_args_key";
139 private static final String OPEN_LINKS_COMPONENT_KEY = "app_link_state";
140
Matt Pietalab73a882019-06-05 07:04:55 -0400141 private final PackageMonitor mPackageMonitor = createPackageMonitor();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800142
Paul McLean07425c82019-10-18 12:00:11 -0600143 // Intent extra for connected audio devices
144 public static final String EXTRA_IS_AUDIO_CAPTURE_DEVICE = "is_audio_capture_device";
145
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700146 /**
147 * Get the string resource to be used as a label for the link to the resolver activity for an
148 * action.
149 *
150 * @param action The action to resolve
151 *
152 * @return The string resource to be used as a label
153 */
154 public static @StringRes int getLabelRes(String action) {
155 return ActionTitle.forAction(action).labelRes;
156 }
157
Adam Powell278902c2014-07-12 18:33:22 -0700158 private enum ActionTitle {
159 VIEW(Intent.ACTION_VIEW,
160 com.android.internal.R.string.whichViewApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700161 com.android.internal.R.string.whichViewApplicationNamed,
162 com.android.internal.R.string.whichViewApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700163 EDIT(Intent.ACTION_EDIT,
164 com.android.internal.R.string.whichEditApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700165 com.android.internal.R.string.whichEditApplicationNamed,
166 com.android.internal.R.string.whichEditApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700167 SEND(Intent.ACTION_SEND,
168 com.android.internal.R.string.whichSendApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700169 com.android.internal.R.string.whichSendApplicationNamed,
170 com.android.internal.R.string.whichSendApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700171 SENDTO(Intent.ACTION_SENDTO,
Adam Powell13ea8f42016-03-18 09:39:41 -0700172 com.android.internal.R.string.whichSendToApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700173 com.android.internal.R.string.whichSendToApplicationNamed,
174 com.android.internal.R.string.whichSendToApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700175 SEND_MULTIPLE(Intent.ACTION_SEND_MULTIPLE,
176 com.android.internal.R.string.whichSendApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700177 com.android.internal.R.string.whichSendApplicationNamed,
178 com.android.internal.R.string.whichSendApplicationLabel),
179 CAPTURE_IMAGE(MediaStore.ACTION_IMAGE_CAPTURE,
180 com.android.internal.R.string.whichImageCaptureApplication,
181 com.android.internal.R.string.whichImageCaptureApplicationNamed,
182 com.android.internal.R.string.whichImageCaptureApplicationLabel),
Adam Powell278902c2014-07-12 18:33:22 -0700183 DEFAULT(null,
184 com.android.internal.R.string.whichApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700185 com.android.internal.R.string.whichApplicationNamed,
186 com.android.internal.R.string.whichApplicationLabel),
Adam Powella35c77a2014-09-25 16:46:36 -0700187 HOME(Intent.ACTION_MAIN,
188 com.android.internal.R.string.whichHomeApplication,
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700189 com.android.internal.R.string.whichHomeApplicationNamed,
190 com.android.internal.R.string.whichHomeApplicationLabel);
Adam Powell278902c2014-07-12 18:33:22 -0700191
shafik0c7c5d52019-02-27 12:13:25 +0000192 // titles for layout that deals with http(s) intents
shafik69df96322018-12-18 15:41:19 +0000193 public static final int BROWSABLE_TITLE_RES =
Matt Pietal0d6834a2019-06-27 13:27:52 -0400194 com.android.internal.R.string.whichOpenLinksWith;
195 public static final int BROWSABLE_HOST_TITLE_RES =
196 com.android.internal.R.string.whichOpenHostLinksWith;
197 public static final int BROWSABLE_HOST_APP_TITLE_RES =
198 com.android.internal.R.string.whichOpenHostLinksWithApp;
199 public static final int BROWSABLE_APP_TITLE_RES =
200 com.android.internal.R.string.whichOpenLinksWithApp;
shafik69df96322018-12-18 15:41:19 +0000201
Adam Powell278902c2014-07-12 18:33:22 -0700202 public final String action;
203 public final int titleRes;
204 public final int namedTitleRes;
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700205 public final @StringRes int labelRes;
Adam Powell278902c2014-07-12 18:33:22 -0700206
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700207 ActionTitle(String action, int titleRes, int namedTitleRes, @StringRes int labelRes) {
Adam Powell278902c2014-07-12 18:33:22 -0700208 this.action = action;
209 this.titleRes = titleRes;
210 this.namedTitleRes = namedTitleRes;
Philip P. Moltmannf8173ca2016-04-12 15:11:23 -0700211 this.labelRes = labelRes;
Adam Powell278902c2014-07-12 18:33:22 -0700212 }
213
214 public static ActionTitle forAction(String action) {
215 for (ActionTitle title : values()) {
Adam Powella35c77a2014-09-25 16:46:36 -0700216 if (title != HOME && action != null && action.equals(title.action)) {
Adam Powell278902c2014-07-12 18:33:22 -0700217 return title;
218 }
219 }
220 return DEFAULT;
221 }
222 }
223
Matt Pietalab73a882019-06-05 07:04:55 -0400224 protected PackageMonitor createPackageMonitor() {
225 return new PackageMonitor() {
226 @Override
227 public void onSomePackagesChanged() {
228 mAdapter.handlePackagesChanged();
arangelovb0802dc2019-10-18 18:03:44 +0100229 updateProfileViewButton();
Matt Pietalab73a882019-06-05 07:04:55 -0400230 }
231
232 @Override
233 public boolean onPackageChanged(String packageName, int uid, String[] components) {
234 // We care about all package changes, not just the whole package itself which is
235 // default behavior.
236 return true;
237 }
238 };
239 }
240
Dianne Hackborn905577f2011-09-07 18:31:28 -0700241 private Intent makeMyIntent() {
242 Intent intent = new Intent(getIntent());
Dianne Hackborn6d8dfbd2013-09-23 17:38:51 -0700243 intent.setComponent(null);
Dianne Hackborn905577f2011-09-07 18:31:28 -0700244 // The resolver activity is set to be hidden from recent tasks.
245 // we don't want this attribute to be propagated to the next activity
246 // being launched. Note that if the original Intent also had this
247 // flag set, we are now losing it. That should be a very rare case
248 // and we can live with this.
249 intent.setFlags(intent.getFlags()&~Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
250 return intent;
251 }
252
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 @Override
254 protected void onCreate(Bundle savedInstanceState) {
Christopher Tateb72b3632013-09-30 17:50:32 -0700255 // Use a specialized prompt when we're handling the 'Home' app startActivity()
Christopher Tateb72b3632013-09-30 17:50:32 -0700256 final Intent intent = makeMyIntent();
257 final Set<String> categories = intent.getCategories();
258 if (Intent.ACTION_MAIN.equals(intent.getAction())
259 && categories != null
260 && categories.size() == 1
261 && categories.contains(Intent.CATEGORY_HOME)) {
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100262 // Note: this field is not set to true in the compatibility version.
263 mResolvingHome = true;
Christopher Tateb72b3632013-09-30 17:50:32 -0700264 }
265
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700266 setSafeForwardingMode(true);
267
Adam Powella35c77a2014-09-25 16:46:36 -0700268 onCreate(savedInstanceState, intent, null, 0, null, null, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269 }
270
Adam Powell278902c2014-07-12 18:33:22 -0700271 /**
Adam Powell24428412015-04-01 17:19:56 -0700272 * Compatibility version for other bundled services that use this overload without
Adam Powell278902c2014-07-12 18:33:22 -0700273 * a default title resource
274 */
Andrei Onea15884392019-03-22 17:28:11 +0000275 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 protected void onCreate(Bundle savedInstanceState, Intent intent,
Adam Powell278902c2014-07-12 18:33:22 -0700277 CharSequence title, Intent[] initialIntents,
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800278 List<ResolveInfo> rList, boolean supportsAlwaysUseOption) {
279 onCreate(savedInstanceState, intent, title, 0, initialIntents, rList,
280 supportsAlwaysUseOption);
Adam Powell278902c2014-07-12 18:33:22 -0700281 }
282
283 protected void onCreate(Bundle savedInstanceState, Intent intent,
284 CharSequence title, int defaultTitleRes, Intent[] initialIntents,
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800285 List<ResolveInfo> rList, boolean supportsAlwaysUseOption) {
Adam Powelle9414d92014-07-05 17:44:18 -0700286 setTheme(R.style.Theme_DeviceDefault_Resolver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 super.onCreate(savedInstanceState);
Sander Alewijnsef6545332014-10-31 12:39:02 +0000288
289 // Determine whether we should show that intent is forwarded
290 // from managed profile to owner or other way around.
291 setProfileSwitchMessageId(intent.getContentUserHint());
292
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700293 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700294 mLaunchedFromUid = ActivityTaskManager.getService().getLaunchedFromUid(
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700295 getActivityToken());
296 } catch (RemoteException e) {
297 mLaunchedFromUid = -1;
298 }
Adam Powell7d758002015-05-06 17:49:36 -0700299
300 if (mLaunchedFromUid < 0 || UserHandle.isIsolated(mLaunchedFromUid)) {
301 // Gulp!
302 finish();
303 return;
304 }
305
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 mPm = getPackageManager();
Adam Powell09a65602014-07-20 16:23:14 -0700307
Dianne Hackbornd0d75032012-04-19 23:12:09 -0700308 mPackageMonitor.register(this, getMainLooper(), false);
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700309 mRegistered = true;
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800310 mReferrerPackage = getReferrerPackageName();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800311
Adam Powell7d758002015-05-06 17:49:36 -0700312 // Add our initial intent as the first item, regardless of what else has already been added.
Adam Powell2ed547e2015-04-29 18:45:04 -0700313 mIntents.add(0, new Intent(intent));
Hakan Seyalioglu33550122017-01-06 19:54:43 -0800314 mTitle = title;
315 mDefaultTitleResId = defaultTitleRes;
Adam Powell278902c2014-07-12 18:33:22 -0700316
shafik69df96322018-12-18 15:41:19 +0000317 mUseLayoutForBrowsables = getTargetIntent() == null
318 ? false
shafik0c7c5d52019-02-27 12:13:25 +0000319 : isHttpSchemeAndViewAction(getTargetIntent());
shafik69df96322018-12-18 15:41:19 +0000320
Matt Pietal0d6834a2019-06-27 13:27:52 -0400321 mSupportsAlwaysUseOption = supportsAlwaysUseOption;
shafik69df96322018-12-18 15:41:19 +0000322
arangelovb0802dc2019-10-18 18:03:44 +0100323 // The last argument of createAdapter is whether to do special handling
324 // of the last used choice to highlight it in the list. We need to always
325 // turn this off when running under voice interaction, since it results in
326 // a more complicated UI that the current voice interaction flow is not able
327 // to handle.
328 boolean filterLastUsed = mSupportsAlwaysUseOption && !isVoiceInteraction();
329 mAdapter = createAdapter(this, mIntents, initialIntents, rList,
330 filterLastUsed, mUseLayoutForBrowsables);
arangelovb0802dc2019-10-18 18:03:44 +0100331
arangelovbb572332019-11-13 12:50:08 +0000332 if (configureContentView()) {
Adam Powell39e94eb2015-09-08 17:01:49 -0700333 return;
334 }
Adam Powell278902c2014-07-12 18:33:22 -0700335
Alan Viverette51efddb2017-04-05 10:00:01 -0400336 final ResolverDrawerLayout rdl = findViewById(R.id.contentPanel);
Adam Powell4f6c2052014-07-07 18:49:10 -0700337 if (rdl != null) {
Adam Powell5dd072d2014-10-30 19:51:41 -0700338 rdl.setOnDismissedListener(new ResolverDrawerLayout.OnDismissedListener() {
Adam Powell4f6c2052014-07-07 18:49:10 -0700339 @Override
Adam Powell5dd072d2014-10-30 19:51:41 -0700340 public void onDismissed() {
Adam Powell4f6c2052014-07-07 18:49:10 -0700341 finish();
342 }
343 });
Adam Powell4c470d62015-06-19 17:46:17 -0700344 if (isVoiceInteraction()) {
345 rdl.setCollapsed(false);
346 }
Matt Pietal800136a2019-05-08 07:46:39 -0400347
348 rdl.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
349 | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
350 rdl.setOnApplyWindowInsetsListener(this::onApplyWindowInsets);
351
Adam Powell63b31692015-09-28 10:45:00 -0700352 mResolverDrawerLayout = rdl;
Adam Powell4f6c2052014-07-07 18:49:10 -0700353 }
354
Adam Powell88831a22014-11-20 18:17:00 -0800355 mProfileView = findViewById(R.id.profile_button);
356 if (mProfileView != null) {
Matt Pietal74c6ed02019-04-18 13:38:46 -0400357 mProfileView.setOnClickListener(this::onProfileClick);
arangelovb0802dc2019-10-18 18:03:44 +0100358 updateProfileViewButton();
Adam Powell88831a22014-11-20 18:17:00 -0800359 }
Adam Powell4c470d62015-06-19 17:46:17 -0700360
Clara Bayarri9550f5d2016-05-11 11:20:13 +0100361 final Set<String> categories = intent.getCategories();
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100362 MetricsLogger.action(this, mAdapter.hasFilteredItem()
363 ? MetricsProto.MetricsEvent.ACTION_SHOW_APP_DISAMBIG_APP_FEATURED
364 : MetricsProto.MetricsEvent.ACTION_SHOW_APP_DISAMBIG_NONE_FEATURED,
365 intent.getAction() + ":" + intent.getType() + ":"
Clara Bayarri9550f5d2016-05-11 11:20:13 +0100366 + (categories != null ? Arrays.toString(categories.toArray()) : ""));
Adam Powell4c470d62015-06-19 17:46:17 -0700367 }
368
Matt Pietal74c6ed02019-04-18 13:38:46 -0400369 protected void onProfileClick(View v) {
370 final DisplayResolveInfo dri = mAdapter.getOtherProfile();
371 if (dri == null) {
372 return;
373 }
374
375 // Do not show the profile switch message anymore.
376 mProfileSwitchMessageId = -1;
377
378 onTargetSelected(dri, false);
379 finish();
380 }
381
Matt Pietal800136a2019-05-08 07:46:39 -0400382 protected WindowInsets onApplyWindowInsets(View v, WindowInsets insets) {
383 mSystemWindowInsets = insets.getSystemWindowInsets();
384
385 mResolverDrawerLayout.setPadding(mSystemWindowInsets.left, mSystemWindowInsets.top,
386 mSystemWindowInsets.right, 0);
387
Matt Pietald5071202019-10-10 11:21:28 -0400388 // Need extra padding so the list can fully scroll up
389 if (useLayoutWithDefault()) {
390 if (mFooterSpacer == null) {
391 mFooterSpacer = new Space(getApplicationContext());
392 } else {
393 ((ListView) mAdapterView).removeFooterView(mFooterSpacer);
394 }
395 mFooterSpacer.setLayoutParams(new AbsListView.LayoutParams(LayoutParams.MATCH_PARENT,
396 mSystemWindowInsets.bottom));
397 ((ListView) mAdapterView).addFooterView(mFooterSpacer);
Matt Pietal800136a2019-05-08 07:46:39 -0400398 } else {
Matt Pietald5071202019-10-10 11:21:28 -0400399 View emptyView = findViewById(R.id.empty);
400 if (emptyView != null) {
401 emptyView.setPadding(0, 0, 0, mSystemWindowInsets.bottom
402 + getResources().getDimensionPixelSize(
403 R.dimen.chooser_edge_margin_normal) * 2);
404 }
Matt Pietal800136a2019-05-08 07:46:39 -0400405 }
Matt Pietal800136a2019-05-08 07:46:39 -0400406
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
arangelovb0802dc2019-10-18 18:03:44 +0100423 @Override // ResolverListCommunicator
Adam Powell23882512016-01-29 10:21:00 -0800424 public void sendVoiceChoicesIfNeeded() {
Adam Powell4c470d62015-06-19 17:46:17 -0700425 if (!isVoiceInteraction()) {
426 // Clearly not needed.
427 return;
428 }
429
Adam Powell4c470d62015-06-19 17:46:17 -0700430 final Option[] options = new Option[mAdapter.getCount()];
431 for (int i = 0, N = options.length; i < N; i++) {
Matt Pietal2cf4c6c2019-09-10 09:33:11 -0400432 TargetInfo target = mAdapter.getItem(i);
433 if (target == null) {
434 // If this occurs, a new set of targets is being loaded. Let that complete,
435 // and have the next call to send voice choices proceed instead.
436 return;
437 }
438 options[i] = optionForChooserTarget(target, i);
Adam Powell4c470d62015-06-19 17:46:17 -0700439 }
440
441 mPickOptionRequest = new PickTargetOptionRequest(
442 new Prompt(getTitle()), options, null);
443 getVoiceInteractor().submitRequest(mPickOptionRequest);
444 }
445
446 Option optionForChooserTarget(TargetInfo target, int index) {
447 return new Option(target.getDisplayLabel(), index);
Adam Powell88831a22014-11-20 18:17:00 -0800448 }
449
Adam Powell2ed547e2015-04-29 18:45:04 -0700450 protected final void setAdditionalTargets(Intent[] intents) {
451 if (intents != null) {
452 for (Intent intent : intents) {
453 mIntents.add(intent);
454 }
455 }
456 }
457
arangelovb0802dc2019-10-18 18:03:44 +0100458 @Override // SelectableTargetInfoCommunicator ResolverListCommunicator
Adam Powell0ccc0e92015-04-23 17:19:37 -0700459 public Intent getTargetIntent() {
Adam Powell2ed547e2015-04-29 18:45:04 -0700460 return mIntents.isEmpty() ? null : mIntents.get(0);
Adam Powell0ccc0e92015-04-23 17:19:37 -0700461 }
462
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800463 protected String getReferrerPackageName() {
Adam Powell24428412015-04-01 17:19:56 -0700464 final Uri referrer = getReferrer();
465 if (referrer != null && "android-app".equals(referrer.getScheme())) {
466 return referrer.getHost();
467 }
468 return null;
469 }
470
Adam Powell23882512016-01-29 10:21:00 -0800471 public int getLayoutResource() {
Adam Powell24428412015-04-01 17:19:56 -0700472 return R.layout.resolver_list;
473 }
474
arangelovb0802dc2019-10-18 18:03:44 +0100475 @Override // ResolverListCommunicator
476 public void updateProfileViewButton() {
Matt Pietal74c6ed02019-04-18 13:38:46 -0400477 if (mProfileView == null) {
478 return;
479 }
480
Adam Powell88831a22014-11-20 18:17:00 -0800481 final DisplayResolveInfo dri = mAdapter.getOtherProfile();
482 if (dri != null) {
483 mProfileView.setVisibility(View.VISIBLE);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800484 View text = mProfileView.findViewById(R.id.profile_button);
485 if (!(text instanceof TextView)) {
486 text = mProfileView.findViewById(R.id.text1);
487 }
488 ((TextView) text).setText(dri.getDisplayLabel());
Adam Powell88831a22014-11-20 18:17:00 -0800489 } else {
490 mProfileView.setVisibility(View.GONE);
491 }
Adam Powell278902c2014-07-12 18:33:22 -0700492 }
493
Sander Alewijnsef6545332014-10-31 12:39:02 +0000494 private void setProfileSwitchMessageId(int contentUserHint) {
495 if (contentUserHint != UserHandle.USER_CURRENT &&
496 contentUserHint != UserHandle.myUserId()) {
497 UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
498 UserInfo originUserInfo = userManager.getUserInfo(contentUserHint);
499 boolean originIsManaged = originUserInfo != null ? originUserInfo.isManagedProfile()
500 : false;
501 boolean targetIsManaged = userManager.isManagedProfile();
502 if (originIsManaged && !targetIsManaged) {
503 mProfileSwitchMessageId = com.android.internal.R.string.forward_intent_to_owner;
504 } else if (!originIsManaged && targetIsManaged) {
505 mProfileSwitchMessageId = com.android.internal.R.string.forward_intent_to_work;
506 }
507 }
508 }
509
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700510 /**
511 * Turn on launch mode that is safe to use when forwarding intents received from
512 * applications and running in system processes. This mode uses Activity.startActivityAsCaller
513 * instead of the normal Activity.startActivity for launching the activity selected
514 * by the user.
515 *
516 * <p>This mode is set to true by default if the activity is initialized through
517 * {@link #onCreate(android.os.Bundle)}. If a subclass calls one of the other onCreate
518 * methods, it is set to false by default. You must set it before calling one of the
519 * more detailed onCreate methods, so that it will be set correctly in the case where
520 * there is only one intent to resolve and it is thus started immediately.</p>
521 */
522 public void setSafeForwardingMode(boolean safeForwarding) {
523 mSafeForwardingMode = safeForwarding;
524 }
525
shafik69df96322018-12-18 15:41:19 +0000526 protected CharSequence getTitleForAction(Intent intent, int defaultTitleRes) {
527 final ActionTitle title = mResolvingHome
528 ? ActionTitle.HOME
529 : ActionTitle.forAction(intent.getAction());
530
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800531 // While there may already be a filtered item, we can only use it in the title if the list
532 // is already sorted and all information relevant to it is already in the list.
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800533 final boolean named = mAdapter.getFilteredPosition() >= 0;
Adam Powell278902c2014-07-12 18:33:22 -0700534 if (title == ActionTitle.DEFAULT && defaultTitleRes != 0) {
535 return getString(defaultTitleRes);
shafik0c7c5d52019-02-27 12:13:25 +0000536 } else if (isHttpSchemeAndViewAction(intent)) {
537 // If the Intent's scheme is http(s) then we need to warn the user that
shafik69df96322018-12-18 15:41:19 +0000538 // they're giving access for the activity to open URLs from this specific host
Matt Pietal0d6834a2019-06-27 13:27:52 -0400539 String dialogTitle = null;
540 if (named && !mUseLayoutForBrowsables) {
541 dialogTitle = getString(ActionTitle.BROWSABLE_APP_TITLE_RES,
542 mAdapter.getFilteredItem().getDisplayLabel());
543 } else if (named && mUseLayoutForBrowsables) {
544 dialogTitle = getString(ActionTitle.BROWSABLE_HOST_APP_TITLE_RES,
545 intent.getData().getHost(),
546 mAdapter.getFilteredItem().getDisplayLabel());
547 } else if (mAdapter.areAllTargetsBrowsers()) {
Matt Pietald5071202019-10-10 11:21:28 -0400548 dialogTitle = getString(ActionTitle.BROWSABLE_TITLE_RES);
Matt Pietal0d6834a2019-06-27 13:27:52 -0400549 } else {
550 dialogTitle = getString(ActionTitle.BROWSABLE_HOST_TITLE_RES,
551 intent.getData().getHost());
552 }
553 return dialogTitle;
Adam Powell278902c2014-07-12 18:33:22 -0700554 } else {
Adam Powell24428412015-04-01 17:19:56 -0700555 return named
556 ? getString(title.namedTitleRes, mAdapter.getFilteredItem().getDisplayLabel())
557 : getString(title.titleRes);
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700558 }
Adam Powellc5878612012-05-04 18:42:38 -0700559 }
560
Adam Powelle9414d92014-07-05 17:44:18 -0700561 void dismiss() {
562 if (!isFinishing()) {
563 finish();
564 }
565 }
566
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800567 @Override
568 protected void onRestart() {
569 super.onRestart();
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700570 if (!mRegistered) {
571 mPackageMonitor.register(this, getMainLooper(), false);
572 mRegistered = true;
573 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800574 mAdapter.handlePackagesChanged();
arangelovb0802dc2019-10-18 18:03:44 +0100575 updateProfileViewButton();
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800576 }
577
578 @Override
579 protected void onStop() {
580 super.onStop();
Dianne Hackbornd44713a2012-04-30 16:34:46 -0700581 if (mRegistered) {
582 mPackageMonitor.unregister();
583 mRegistered = false;
584 }
Wale Ogunwale9014e662016-03-19 14:55:46 -0700585 final Intent intent = getIntent();
586 if ((intent.getFlags() & FLAG_ACTIVITY_NEW_TASK) != 0 && !isVoiceInteraction()
Jorim Jaggif631ef72017-02-24 13:49:47 +0100587 && !mResolvingHome && !mRetainInOnStop) {
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700588 // This resolver is in the unusual situation where it has been
589 // launched at the top of a new task. We don't let it be added
590 // to the recent tasks shown to the user, and we need to make sure
591 // that each time we are launched we get the correct launching
592 // uid (not re-using the same resolver from an old launching uid),
593 // so we will now finish ourself since being no longer visible,
594 // the user probably can't get back to us.
595 if (!isChangingConfigurations()) {
596 finish();
597 }
598 }
Dianne Hackborne8f2c7f2012-03-01 17:30:53 -0800599 }
600
Adam Powellc5878612012-05-04 18:42:38 -0700601 @Override
Adam Powell4c470d62015-06-19 17:46:17 -0700602 protected void onDestroy() {
603 super.onDestroy();
604 if (!isChangingConfigurations() && mPickOptionRequest != null) {
605 mPickOptionRequest.cancel();
606 }
arangelovb0802dc2019-10-18 18:03:44 +0100607 if (mAdapter != null) {
608 mAdapter.onDestroy();
Kang Li38a6da642017-04-05 12:30:55 -0700609 }
Adam Powell4c470d62015-06-19 17:46:17 -0700610 }
611
612 @Override
Adam Powell9bee4662012-05-08 11:07:23 -0700613 protected void onRestoreInstanceState(Bundle savedInstanceState) {
614 super.onRestoreInstanceState(savedInstanceState);
shafik69df96322018-12-18 15:41:19 +0000615 resetButtonBar();
Adam Powell9bee4662012-05-08 11:07:23 -0700616 }
617
shafik0c7c5d52019-02-27 12:13:25 +0000618 private boolean isHttpSchemeAndViewAction(Intent intent) {
619 return (IntentFilter.SCHEME_HTTP.equals(intent.getScheme())
620 || IntentFilter.SCHEME_HTTPS.equals(intent.getScheme()))
621 && Intent.ACTION_VIEW.equals(intent.getAction());
622 }
623
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100624 private boolean hasManagedProfile() {
625 UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
626 if (userManager == null) {
627 return false;
628 }
629
630 try {
631 List<UserInfo> profiles = userManager.getProfiles(getUserId());
632 for (UserInfo userInfo : profiles) {
633 if (userInfo != null && userInfo.isManagedProfile()) {
634 return true;
635 }
636 }
637 } catch (SecurityException e) {
638 return false;
639 }
640 return false;
641 }
642
643 private boolean supportsManagedProfiles(ResolveInfo resolveInfo) {
644 try {
645 ApplicationInfo appInfo = getPackageManager().getApplicationInfo(
646 resolveInfo.activityInfo.packageName, 0 /* default flags */);
Adam Powell4c470d62015-06-19 17:46:17 -0700647 return appInfo.targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP;
Sander Alewijnse6c9eee82014-07-17 10:03:31 +0100648 } catch (NameNotFoundException e) {
649 return false;
650 }
651 }
652
Adam Powell278902c2014-07-12 18:33:22 -0700653 private void setAlwaysButtonEnabled(boolean hasValidSelection, int checkedPos,
654 boolean filtered) {
Nicolas Prevot50449882014-06-23 12:42:37 +0100655 boolean enabled = false;
656 if (hasValidSelection) {
Adam Powell278902c2014-07-12 18:33:22 -0700657 ResolveInfo ri = mAdapter.resolveInfoForPosition(checkedPos, filtered);
Hakan Seyalioglu5dbc8192017-02-24 16:16:37 -0800658 if (ri == null) {
659 Log.e(TAG, "Invalid position supplied to setAlwaysButtonEnabled");
660 return;
661 } else if (ri.targetUserId != UserHandle.USER_CURRENT) {
662 Log.e(TAG, "Attempted to set selection to resolve info for another user");
663 return;
664 } else {
Nicolas Prevot50449882014-06-23 12:42:37 +0100665 enabled = true;
666 }
Matt Pietal0d6834a2019-06-27 13:27:52 -0400667 if (mUseLayoutForBrowsables && !ri.handleAllWebDataURI) {
668 mAlwaysButton.setText(getResources()
669 .getString(R.string.activity_resolver_set_always));
670 } else {
671 mAlwaysButton.setText(getResources()
672 .getString(R.string.activity_resolver_use_always));
673 }
Nicolas Prevot50449882014-06-23 12:42:37 +0100674 }
675 mAlwaysButton.setEnabled(enabled);
676 }
677
Adam Powellc5878612012-05-04 18:42:38 -0700678 public void onButtonClick(View v) {
679 final int id = v.getId();
shafik69df96322018-12-18 15:41:19 +0000680 int which = mAdapter.hasFilteredItem()
681 ? mAdapter.getFilteredPosition()
682 : mAdapterView.getCheckedItemPosition();
683 boolean hasIndexBeenFiltered = !mAdapter.hasFilteredItem();
Matt Pietal0d6834a2019-06-27 13:27:52 -0400684 ResolveInfo ri = mAdapter.resolveInfoForPosition(which, hasIndexBeenFiltered);
Matt Pietala310c1f2019-07-03 09:12:56 -0400685 if (mUseLayoutForBrowsables
686 && !ri.handleAllWebDataURI && id == R.id.button_always) {
Matt Pietal0d6834a2019-06-27 13:27:52 -0400687 showSettingsForSelected(ri);
shafik69df96322018-12-18 15:41:19 +0000688 } else {
689 startSelected(which, id == R.id.button_always, hasIndexBeenFiltered);
690 }
691 }
692
Matt Pietal0d6834a2019-06-27 13:27:52 -0400693 private void showSettingsForSelected(ResolveInfo ri) {
shafik34064c32019-03-06 15:42:52 +0000694 Intent intent = new Intent();
Matt Pietal0d6834a2019-06-27 13:27:52 -0400695
696 final String packageName = ri.activityInfo.packageName;
697 Bundle showFragmentArgs = new Bundle();
698 showFragmentArgs.putString(EXTRA_FRAGMENT_ARG_KEY, OPEN_LINKS_COMPONENT_KEY);
699 showFragmentArgs.putString("package", packageName);
700
shafik34064c32019-03-06 15:42:52 +0000701 // For regular apps, we open the Open by Default page
Matt Pietal0d6834a2019-06-27 13:27:52 -0400702 intent.setAction(Settings.ACTION_APP_OPEN_BY_DEFAULT_SETTINGS)
703 .setData(Uri.fromParts("package", packageName, null))
704 .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT)
705 .putExtra(EXTRA_FRAGMENT_ARG_KEY, OPEN_LINKS_COMPONENT_KEY)
706 .putExtra(EXTRA_SHOW_FRAGMENT_ARGS, showFragmentArgs);
707
shafik34064c32019-03-06 15:42:52 +0000708 startActivity(intent);
Adam Powellc5878612012-05-04 18:42:38 -0700709 }
710
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800711 public void startSelected(int which, boolean always, boolean hasIndexBeenFiltered) {
Amith Yamasani07cd3512013-09-18 13:16:00 -0700712 if (isFinishing()) {
713 return;
714 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800715 ResolveInfo ri = mAdapter.resolveInfoForPosition(which, hasIndexBeenFiltered);
Sander Alewijnse86d35ba2015-02-04 15:14:53 +0000716 if (mResolvingHome && hasManagedProfile() && !supportsManagedProfiles(ri)) {
717 Toast.makeText(this, String.format(getResources().getString(
718 com.android.internal.R.string.activity_resolver_work_profiles_support),
719 ri.activityInfo.loadLabel(getPackageManager()).toString()),
720 Toast.LENGTH_LONG).show();
721 return;
722 }
723
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800724 TargetInfo target = mAdapter.targetInfoForPosition(which, hasIndexBeenFiltered);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -0800725 if (target == null) {
726 return;
727 }
Adam Powell2ed547e2015-04-29 18:45:04 -0700728 if (onTargetSelected(target, always)) {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800729 if (always && mSupportsAlwaysUseOption) {
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100730 MetricsLogger.action(
731 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_ALWAYS);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800732 } else if (mSupportsAlwaysUseOption) {
Clara Bayarrifa902aa2016-04-13 14:45:08 +0100733 MetricsLogger.action(
734 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_JUST_ONCE);
735 } else {
736 MetricsLogger.action(
737 this, MetricsProto.MetricsEvent.ACTION_APP_DISAMBIG_TAP);
738 }
739 MetricsLogger.action(this, mAdapter.hasFilteredItem()
740 ? MetricsProto.MetricsEvent.ACTION_HIDE_APP_DISAMBIG_APP_FEATURED
741 : MetricsProto.MetricsEvent.ACTION_HIDE_APP_DISAMBIG_NONE_FEATURED);
Adam Powell2ed547e2015-04-29 18:45:04 -0700742 finish();
743 }
Mike Lockwood02eb8742011-02-27 09:10:37 -0800744 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745
Adam Powelle49d9392014-07-17 18:45:19 -0700746 /**
747 * Replace me in subclasses!
748 */
arangelovb0802dc2019-10-18 18:03:44 +0100749 @Override // ResolverListCommunicator
Nicolas Prevot0e2b73f2014-10-27 10:06:11 +0000750 public Intent getReplacementIntent(ActivityInfo aInfo, Intent defIntent) {
Adam Powelle49d9392014-07-17 18:45:19 -0700751 return defIntent;
752 }
753
arangelovb0802dc2019-10-18 18:03:44 +0100754 @Override // ResolverListCommunicator
755 public void onPostListReady() {
756 setHeader();
757 resetButtonBar();
758 onListRebuilt();
759 }
760
761 protected void onListRebuilt() {
762 int count = mAdapter.getUnfilteredCount();
763 if (count == 1 && mAdapter.getOtherProfile() == null) {
764 // Only one target, so we're a candidate to auto-launch!
765 final TargetInfo target = mAdapter.targetInfoForPosition(0, false);
766 if (shouldAutoLaunchSingleChoice(target)) {
767 safelyStartActivity(target);
768 finish();
769 }
770 }
771 }
772
Adam Powell2ed547e2015-04-29 18:45:04 -0700773 protected boolean onTargetSelected(TargetInfo target, boolean alwaysCheck) {
Adam Powell24428412015-04-01 17:19:56 -0700774 final ResolveInfo ri = target.getResolveInfo();
775 final Intent intent = target != null ? target.getResolvedIntent() : null;
776
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800777 if (intent != null && (mSupportsAlwaysUseOption || mAdapter.hasFilteredItem())
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800778 && mAdapter.mUnfilteredResolveList != null) {
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700779 // Build a reasonable intent filter, based on what matched.
780 IntentFilter filter = new IntentFilter();
Henrik Engström3277cf12014-07-17 12:18:29 +0200781 Intent filterIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800782
Henrik Engström3277cf12014-07-17 12:18:29 +0200783 if (intent.getSelector() != null) {
784 filterIntent = intent.getSelector();
785 } else {
786 filterIntent = intent;
787 }
788
789 String action = filterIntent.getAction();
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800790 if (action != null) {
791 filter.addAction(action);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 }
Henrik Engström3277cf12014-07-17 12:18:29 +0200793 Set<String> categories = filterIntent.getCategories();
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700794 if (categories != null) {
795 for (String cat : categories) {
796 filter.addCategory(cat);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800797 }
798 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700799 filter.addCategory(Intent.CATEGORY_DEFAULT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800800
Adam Powell24428412015-04-01 17:19:56 -0700801 int cat = ri.match & IntentFilter.MATCH_CATEGORY_MASK;
Henrik Engström3277cf12014-07-17 12:18:29 +0200802 Uri data = filterIntent.getData();
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700803 if (cat == IntentFilter.MATCH_CATEGORY_TYPE) {
Henrik Engström3277cf12014-07-17 12:18:29 +0200804 String mimeType = filterIntent.resolveType(this);
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700805 if (mimeType != null) {
806 try {
807 filter.addDataType(mimeType);
808 } catch (IntentFilter.MalformedMimeTypeException e) {
809 Log.w("ResolverActivity", e);
810 filter = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 }
812 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700813 }
814 if (data != null && data.getScheme() != null) {
815 // We need the data specification if there was no type,
816 // OR if the scheme is not one of our magical "file:"
817 // or "content:" schemes (see IntentFilter for the reason).
818 if (cat != IntentFilter.MATCH_CATEGORY_TYPE
819 || (!"file".equals(data.getScheme())
820 && !"content".equals(data.getScheme()))) {
821 filter.addDataScheme(data.getScheme());
822
823 // Look through the resolved filter to determine which part
824 // of it matched the original Intent.
825 Iterator<PatternMatcher> pIt = ri.filter.schemeSpecificPartsIterator();
826 if (pIt != null) {
827 String ssp = data.getSchemeSpecificPart();
828 while (ssp != null && pIt.hasNext()) {
829 PatternMatcher p = pIt.next();
830 if (p.match(ssp)) {
831 filter.addDataSchemeSpecificPart(p.getPath(), p.getType());
832 break;
833 }
Dianne Hackborndf1c0bf2013-06-12 16:21:38 -0700834 }
835 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700836 Iterator<IntentFilter.AuthorityEntry> aIt = ri.filter.authoritiesIterator();
837 if (aIt != null) {
838 while (aIt.hasNext()) {
839 IntentFilter.AuthorityEntry a = aIt.next();
840 if (a.match(data) >= 0) {
841 int port = a.getPort();
842 filter.addDataAuthority(a.getHost(),
843 port >= 0 ? Integer.toString(port) : null);
844 break;
845 }
846 }
847 }
848 pIt = ri.filter.pathsIterator();
849 if (pIt != null) {
850 String path = data.getPath();
851 while (path != null && pIt.hasNext()) {
852 PatternMatcher p = pIt.next();
853 if (p.match(path)) {
854 filter.addDataPath(p.getPath(), p.getType());
855 break;
856 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857 }
858 }
859 }
860 }
861
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700862 if (filter != null) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800863 final int N = mAdapter.mUnfilteredResolveList.size();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800864 ComponentName[] set;
865 // If we don't add back in the component for forwarding the intent to a managed
866 // profile, the preferred activity may not be updated correctly (as the set of
867 // components we tell it we knew about will have changed).
arangelovb0802dc2019-10-18 18:03:44 +0100868 final boolean needToAddBackProfileForwardingComponent =
869 mAdapter.getOtherProfile() != null;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800870 if (!needToAddBackProfileForwardingComponent) {
871 set = new ComponentName[N];
872 } else {
873 set = new ComponentName[N + 1];
874 }
875
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700876 int bestMatch = 0;
877 for (int i=0; i<N; i++) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -0800878 ResolveInfo r = mAdapter.mUnfilteredResolveList.get(i).getResolveInfoAt(0);
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700879 set[i] = new ComponentName(r.activityInfo.packageName,
880 r.activityInfo.name);
881 if (r.match > bestMatch) bestMatch = r.match;
882 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800883
884 if (needToAddBackProfileForwardingComponent) {
arangelovb0802dc2019-10-18 18:03:44 +0100885 set[N] = mAdapter.getOtherProfile().getResolvedComponentName();
886 final int otherProfileMatch = mAdapter.getOtherProfile().getResolveInfo().match;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -0800887 if (otherProfileMatch > bestMatch) bestMatch = otherProfileMatch;
888 }
889
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700890 if (alwaysCheck) {
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700891 final int userId = getUserId();
892 final PackageManager pm = getPackageManager();
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800893
894 // Set the preferred Activity
895 pm.addPreferredActivity(filter, bestMatch, set, intent.getComponent());
896
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700897 if (ri.handleAllWebDataURI) {
898 // Set default Browser if needed
Jeff Sharkeye06b4d12016-01-06 14:51:50 -0700899 final String packageName = pm.getDefaultBrowserPackageNameAsUser(userId);
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700900 if (TextUtils.isEmpty(packageName)) {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -0700901 pm.setDefaultBrowserPackageNameAsUser(ri.activityInfo.packageName, userId);
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700902 }
903 } else {
904 // Update Domain Verification status
905 ComponentName cn = intent.getComponent();
906 String packageName = cn.getPackageName();
907 String dataScheme = (data != null) ? data.getScheme() : null;
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800908
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700909 boolean isHttpOrHttps = (dataScheme != null) &&
910 (dataScheme.equals(IntentFilter.SCHEME_HTTP) ||
911 dataScheme.equals(IntentFilter.SCHEME_HTTPS));
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800912
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700913 boolean isViewAction = (action != null) && action.equals(Intent.ACTION_VIEW);
914 boolean hasCategoryBrowsable = (categories != null) &&
915 categories.contains(Intent.CATEGORY_BROWSABLE);
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800916
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700917 if (isHttpOrHttps && isViewAction && hasCategoryBrowsable) {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -0700918 pm.updateIntentVerificationStatusAsUser(packageName,
Fabrice Di Meglio3453e082015-05-11 17:46:23 -0700919 PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS,
920 userId);
921 }
Fabrice Di Meglio1c1b4712014-11-19 17:12:32 -0800922 }
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700923 } else {
924 try {
Hakan Seyalioglu9149dca2017-01-17 12:20:01 -0800925 mAdapter.mResolverListController.setLastChosen(intent, filter, bestMatch);
Amith Yamasani588dd2a2013-09-03 12:30:44 -0700926 } catch (RemoteException re) {
927 Log.d(TAG, "Error calling setLastChosenActivity\n" + re);
928 }
Amith Yamasanie9ecc8b2013-08-22 11:16:27 -0700929 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 }
931 }
932
Adam Powell24428412015-04-01 17:19:56 -0700933 if (target != null) {
934 safelyStartActivity(target);
Matt Pietala4b30072019-04-04 13:44:36 -0400935
936 // Rely on the ActivityManager to pop up a dialog regarding app suspension
937 // and return false
938 if (target.isSuspended()) {
939 return false;
940 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700941 }
Matt Pietala4b30072019-04-04 13:44:36 -0400942
Adam Powell2ed547e2015-04-29 18:45:04 -0700943 return true;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700944 }
945
Adam Powell23882512016-01-29 10:21:00 -0800946 public void safelyStartActivity(TargetInfo cti) {
Jeff Sharkey2b9eb892016-02-16 09:21:51 -0700947 // We're dispatching intents that might be coming from legacy apps, so
948 // don't kill ourselves.
949 StrictMode.disableDeathOnFileUriExposure();
950 try {
951 safelyStartActivityInternal(cti);
952 } finally {
953 StrictMode.enableDeathOnFileUriExposure();
954 }
955 }
956
957 private void safelyStartActivityInternal(TargetInfo cti) {
Sander Alewijnsef6545332014-10-31 12:39:02 +0000958 // If needed, show that intent is forwarded
959 // from managed profile to owner or other way around.
960 if (mProfileSwitchMessageId != -1) {
961 Toast.makeText(this, getString(mProfileSwitchMessageId), Toast.LENGTH_LONG).show();
962 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700963 if (!mSafeForwardingMode) {
Adam Powell24428412015-04-01 17:19:56 -0700964 if (cti.start(this, null)) {
965 onActivityStarted(cti);
966 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700967 return;
968 }
969 try {
Adam Powell24428412015-04-01 17:19:56 -0700970 if (cti.startAsCaller(this, null, UserHandle.USER_NULL)) {
971 onActivityStarted(cti);
972 }
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700973 } catch (RuntimeException e) {
974 String launchedFromPackage;
975 try {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700976 launchedFromPackage = ActivityTaskManager.getService().getLaunchedFromPackage(
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700977 getActivityToken());
978 } catch (RemoteException e2) {
979 launchedFromPackage = "??";
980 }
981 Slog.wtf(TAG, "Unable to launch as uid " + mLaunchedFromUid
982 + " package " + launchedFromPackage + ", while running in "
983 + ActivityThread.currentProcessName(), e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800984 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 }
986
Alison Cichowlas3e340502018-08-07 17:15:01 -0400987
arangelovb0802dc2019-10-18 18:03:44 +0100988 public boolean startAsCallerImpl(Intent intent, Bundle options, boolean ignoreTargetSecurity,
Alison Cichowlas3e340502018-08-07 17:15:01 -0400989 int userId) {
990 // Pass intent to delegate chooser activity with permission token.
991 // TODO: This should move to a trampoline Activity in the system when the ChooserActivity
992 // moves into systemui
993 try {
994 // TODO: Once this is a small springboard activity, it can move off the UI process
995 // and we can move the request method to ActivityManagerInternal.
996 IBinder permissionToken = ActivityTaskManager.getService()
997 .requestStartActivityPermissionToken(getActivityToken());
998 final Intent chooserIntent = new Intent();
999 final ComponentName delegateActivity = ComponentName.unflattenFromString(
1000 Resources.getSystem().getString(R.string.config_chooserActivity));
1001 chooserIntent.setClassName(delegateActivity.getPackageName(),
1002 delegateActivity.getClassName());
1003 chooserIntent.putExtra(ActivityTaskManager.EXTRA_PERMISSION_TOKEN, permissionToken);
1004
1005 // TODO: These extras will change as chooser activity moves into systemui
1006 chooserIntent.putExtra(Intent.EXTRA_INTENT, intent);
1007 chooserIntent.putExtra(ActivityTaskManager.EXTRA_OPTIONS, options);
1008 chooserIntent.putExtra(ActivityTaskManager.EXTRA_IGNORE_TARGET_SECURITY,
1009 ignoreTargetSecurity);
1010 chooserIntent.putExtra(Intent.EXTRA_USER_ID, userId);
Alison Cichowlas7b6f3b62018-12-07 09:06:57 -05001011 chooserIntent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT
1012 | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001013 startActivity(chooserIntent);
1014 } catch (RemoteException e) {
1015 Log.e(TAG, e.toString());
1016 }
1017 return true;
1018 }
1019
Adam Powell23882512016-01-29 10:21:00 -08001020 public void onActivityStarted(TargetInfo cti) {
Adam Powell0b3c1122014-10-09 12:50:14 -07001021 // Do nothing
1022 }
1023
arangelovb0802dc2019-10-18 18:03:44 +01001024 @Override // ResolverListCommunicator
Adam Powell23882512016-01-29 10:21:00 -08001025 public boolean shouldGetActivityMetadata() {
Adam Powell24428412015-04-01 17:19:56 -07001026 return false;
1027 }
1028
Adam Powell23882512016-01-29 10:21:00 -08001029 public boolean shouldAutoLaunchSingleChoice(TargetInfo target) {
Matt Pietala4b30072019-04-04 13:44:36 -04001030 return !target.isSuspended();
Adam Powell39e94eb2015-09-08 17:01:49 -07001031 }
1032
Adam Powell23882512016-01-29 10:21:00 -08001033 public void showTargetDetails(ResolveInfo ri) {
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001034 Intent in = new Intent().setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)
Adam Powell0fc5b2b2012-07-18 18:20:29 -07001035 .setData(Uri.fromParts("package", ri.activityInfo.packageName, null))
Adam Powell24428412015-04-01 17:19:56 -07001036 .addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
Amith Yamasani203a2f42012-10-03 20:16:40 -07001037 startActivity(in);
Adam Powellc5878612012-05-04 18:42:38 -07001038 }
1039
arangelovb0802dc2019-10-18 18:03:44 +01001040 public ResolverListAdapter createAdapter(Context context, List<Intent> payloadIntents,
1041 Intent[] initialIntents, List<ResolveInfo> rList,
1042 boolean filterLastUsed, boolean useLayoutForBrowsables) {
Paul McLean07425c82019-10-18 12:00:11 -06001043
1044 Intent startIntent = getIntent();
1045 boolean isAudioCaptureDevice =
1046 startIntent.getBooleanExtra(EXTRA_IS_AUDIO_CAPTURE_DEVICE, false);
1047
arangelovb0802dc2019-10-18 18:03:44 +01001048 return new ResolverListAdapter(context, payloadIntents, initialIntents, rList,
Paul McLean07425c82019-10-18 12:00:11 -06001049 filterLastUsed, createListController(), useLayoutForBrowsables, this,
1050 isAudioCaptureDevice);
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001051 }
1052
1053 @VisibleForTesting
1054 protected ResolverListController createListController() {
1055 return new ResolverListController(
1056 this,
1057 mPm,
1058 getTargetIntent(),
1059 getReferrerPackageName(),
1060 mLaunchedFromUid);
Adam Powell88831a22014-11-20 18:17:00 -08001061 }
1062
Adam Powell39e94eb2015-09-08 17:01:49 -07001063 /**
arangelovb0802dc2019-10-18 18:03:44 +01001064 * Sets up the content view.
arangelovbb572332019-11-13 12:50:08 +00001065 * @return <code>true</code> if the activity is finishing and creation should halt.
Adam Powell39e94eb2015-09-08 17:01:49 -07001066 */
arangelovbb572332019-11-13 12:50:08 +00001067 private boolean configureContentView() {
arangelovb0802dc2019-10-18 18:03:44 +01001068 if (mAdapter == null) {
1069 throw new IllegalStateException("mAdapter cannot be null.");
1070 }
arangelovbb572332019-11-13 12:50:08 +00001071 boolean rebuildCompleted = mAdapter.rebuildList();
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001072 if (useLayoutWithDefault()) {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001073 mLayoutId = R.layout.resolver_list_with_default;
Adam Powell7d758002015-05-06 17:49:36 -07001074 } else {
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001075 mLayoutId = getLayoutResource();
Adam Powell7d758002015-05-06 17:49:36 -07001076 }
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001077 setContentView(mLayoutId);
arangelovbb572332019-11-13 12:50:08 +00001078 return postRebuildList(rebuildCompleted);
arangelovb0802dc2019-10-18 18:03:44 +01001079 }
Adam Powell7d758002015-05-06 17:49:36 -07001080
arangelovb0802dc2019-10-18 18:03:44 +01001081 /**
arangelovbb572332019-11-13 12:50:08 +00001082 * Finishing procedures to be performed after the list has been rebuilt.
1083 * </p>Subclasses must call postRebuildListInternal at the end of postRebuildList.
1084 * @param rebuildCompleted
1085 * @return <code>true</code> if the activity is finishing and creation should halt.
arangelovb0802dc2019-10-18 18:03:44 +01001086 */
arangelovbb572332019-11-13 12:50:08 +00001087 protected boolean postRebuildList(boolean rebuildCompleted) {
1088 return postRebuildListInternal(rebuildCompleted);
arangelovb0802dc2019-10-18 18:03:44 +01001089 }
1090
1091 /**
arangelovbb572332019-11-13 12:50:08 +00001092 * Finishing procedures to be performed after the list has been rebuilt.
1093 * @param rebuildCompleted
1094 * @return <code>true</code> if the activity is finishing and creation should halt.
arangelovb0802dc2019-10-18 18:03:44 +01001095 */
arangelovbb572332019-11-13 12:50:08 +00001096 final boolean postRebuildListInternal(boolean rebuildCompleted) {
1097
Adam Powell50077352015-05-26 18:01:55 -07001098 int count = mAdapter.getUnfilteredCount();
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001099
1100 // We only rebuild asynchronously when we have multiple elements to sort. In the case where
1101 // we're already done, we can check if we should auto-launch immediately.
1102 if (rebuildCompleted) {
1103 if (count == 1 && mAdapter.getOtherProfile() == null) {
1104 // Only one target, so we're a candidate to auto-launch!
1105 final TargetInfo target = mAdapter.targetInfoForPosition(0, false);
1106 if (shouldAutoLaunchSingleChoice(target)) {
1107 safelyStartActivity(target);
1108 mPackageMonitor.unregister();
1109 mRegistered = false;
1110 finish();
1111 return true;
1112 }
Jeff Sharkeycc2ae6b42015-09-29 13:04:46 -07001113 }
1114 }
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001115
Zhen Zhangbde7b462019-11-11 11:49:33 -08001116 boolean isAdapterViewVisible = true;
arangelovb0802dc2019-10-18 18:03:44 +01001117 if (count == 0 && mAdapter.getPlaceholderCount() == 0) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001118 final TextView emptyView = findViewById(R.id.empty);
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001119 emptyView.setVisibility(View.VISIBLE);
Zhen Zhangbde7b462019-11-11 11:49:33 -08001120 isAdapterViewVisible = false;
Adam Powell7d758002015-05-06 17:49:36 -07001121 }
Zhen Zhangbde7b462019-11-11 11:49:33 -08001122
1123 onPrepareAdapterView(mAdapter, isAdapterViewVisible);
Adam Powell39e94eb2015-09-08 17:01:49 -07001124 return false;
Adam Powell7d758002015-05-06 17:49:36 -07001125 }
1126
Zhen Zhangbde7b462019-11-11 11:49:33 -08001127 /**
1128 * Prepare the scrollable view which consumes data in the list adapter.
1129 * @param adapter The adapter used to provide data to item views.
1130 * @param isVisible True if the scrollable view should be visible; false, otherwise.
1131 */
1132 public void onPrepareAdapterView(ResolverListAdapter adapter, boolean isVisible) {
1133 mAdapterView = findViewById(R.id.resolver_list);
1134 if (!isVisible) {
1135 mAdapterView.setVisibility(View.GONE);
1136 return;
1137 }
1138 mAdapterView.setVisibility(View.VISIBLE);
Adam Powell7d758002015-05-06 17:49:36 -07001139 final boolean useHeader = adapter.hasFilteredItem();
Zhen Zhangbde7b462019-11-11 11:49:33 -08001140 final ListView listView = mAdapterView instanceof ListView ? (ListView) mAdapterView : null;
Adam Powell7d758002015-05-06 17:49:36 -07001141
Zhen Zhangbde7b462019-11-11 11:49:33 -08001142 mAdapterView.setAdapter(mAdapter);
Adam Powell7d758002015-05-06 17:49:36 -07001143
1144 final ItemClickListener listener = new ItemClickListener();
Zhen Zhangbde7b462019-11-11 11:49:33 -08001145 mAdapterView.setOnItemClickListener(listener);
1146 mAdapterView.setOnItemLongClickListener(listener);
Adam Powell7d758002015-05-06 17:49:36 -07001147
shafik69df96322018-12-18 15:41:19 +00001148 if (mSupportsAlwaysUseOption || mUseLayoutForBrowsables) {
Adam Powell7d758002015-05-06 17:49:36 -07001149 listView.setChoiceMode(AbsListView.CHOICE_MODE_SINGLE);
1150 }
1151
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001152 // In case this method is called again (due to activity recreation), avoid adding a new
1153 // header if one is already present.
1154 if (useHeader && listView != null && listView.getHeaderViewsCount() == 0) {
Matt Pietald5071202019-10-10 11:21:28 -04001155 listView.setHeaderDividersEnabled(true);
Adam Powell7d758002015-05-06 17:49:36 -07001156 listView.addHeaderView(LayoutInflater.from(this).inflate(
1157 R.layout.resolver_different_item_header, listView, false));
1158 }
Adam Powell24428412015-04-01 17:19:56 -07001159 }
1160
Matt Pietal26038402019-01-08 07:29:34 -05001161 /**
1162 * Configure the area above the app selection list (title, content preview, etc).
1163 */
1164 public void setHeader() {
arangelovb0802dc2019-10-18 18:03:44 +01001165 if (mAdapter.getCount() == 0 && mAdapter.getPlaceholderCount() == 0) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001166 final TextView titleView = findViewById(R.id.title);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001167 if (titleView != null) {
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001168 titleView.setVisibility(View.GONE);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001169 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001170 }
1171
1172 CharSequence title = mTitle != null
1173 ? mTitle
shafik69df96322018-12-18 15:41:19 +00001174 : getTitleForAction(getTargetIntent(), mDefaultTitleResId);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001175
1176 if (!TextUtils.isEmpty(title)) {
Alan Viverette51efddb2017-04-05 10:00:01 -04001177 final TextView titleView = findViewById(R.id.title);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001178 if (titleView != null) {
1179 titleView.setText(title);
1180 }
1181 setTitle(title);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001182 }
1183
Alan Viverette51efddb2017-04-05 10:00:01 -04001184 final ImageView iconView = findViewById(R.id.icon);
arangelovb0802dc2019-10-18 18:03:44 +01001185 if (iconView != null) {
1186 mAdapter.loadFilteredItemIconTaskAsync(iconView);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001187 }
1188 }
1189
shafik69df96322018-12-18 15:41:19 +00001190 private void resetButtonBar() {
1191 if (!mSupportsAlwaysUseOption && !mUseLayoutForBrowsables) {
1192 return;
1193 }
1194 final ViewGroup buttonLayout = findViewById(R.id.button_bar);
1195 if (buttonLayout != null) {
1196 buttonLayout.setVisibility(View.VISIBLE);
Matt Pietal800136a2019-05-08 07:46:39 -04001197
Matt Pietald5071202019-10-10 11:21:28 -04001198 if (!useLayoutWithDefault()) {
1199 int inset = mSystemWindowInsets != null ? mSystemWindowInsets.bottom : 0;
1200 buttonLayout.setPadding(buttonLayout.getPaddingLeft(), buttonLayout.getPaddingTop(),
1201 buttonLayout.getPaddingRight(), getResources().getDimensionPixelSize(
1202 R.dimen.resolver_button_bar_spacing) + inset);
1203 }
shafik69df96322018-12-18 15:41:19 +00001204 mOnceButton = (Button) buttonLayout.findViewById(R.id.button_once);
shafik69df96322018-12-18 15:41:19 +00001205 mAlwaysButton = (Button) buttonLayout.findViewById(R.id.button_always);
1206
Matt Pietal0d6834a2019-06-27 13:27:52 -04001207 resetAlwaysOrOnceButtonBar();
shafik69df96322018-12-18 15:41:19 +00001208 } else {
1209 Log.e(TAG, "Layout unexpectedly does not have a button bar");
1210 }
1211 }
1212
shafik69df96322018-12-18 15:41:19 +00001213 private void resetAlwaysOrOnceButtonBar() {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001214 if (useLayoutWithDefault()
1215 && mAdapter.getFilteredPosition() != ListView.INVALID_POSITION) {
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001216 setAlwaysButtonEnabled(true, mAdapter.getFilteredPosition(), false);
1217 mOnceButton.setEnabled(true);
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001218 return;
1219 }
1220
1221 // When the items load in, if an item was already selected, enable the buttons
1222 if (mAdapterView != null
1223 && mAdapterView.getCheckedItemPosition() != ListView.INVALID_POSITION) {
1224 setAlwaysButtonEnabled(true, mAdapterView.getCheckedItemPosition(), true);
1225 mOnceButton.setEnabled(true);
Hakan Seyalioglu33550122017-01-06 19:54:43 -08001226 }
1227 }
1228
arangelovb0802dc2019-10-18 18:03:44 +01001229 @Override // ResolverListCommunicator
1230 public boolean useLayoutWithDefault() {
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001231 return mSupportsAlwaysUseOption && mAdapter.hasFilteredItem();
1232 }
1233
Adam Powellc412be62015-06-24 13:54:10 -07001234 /**
Jorim Jaggif631ef72017-02-24 13:49:47 +01001235 * If {@code retainInOnStop} is set to true, we will not finish ourselves when onStop gets
1236 * called and we are launched in a new task.
1237 */
1238 protected void setRetainInOnStop(boolean retainInOnStop) {
1239 mRetainInOnStop = retainInOnStop;
1240 }
1241
1242 /**
Adam Powellc412be62015-06-24 13:54:10 -07001243 * Check a simple match for the component of two ResolveInfos.
1244 */
arangelovb0802dc2019-10-18 18:03:44 +01001245 @Override // ResolverListCommunicator
1246 public boolean resolveInfoMatch(ResolveInfo lhs, ResolveInfo rhs) {
Adam Powellc412be62015-06-24 13:54:10 -07001247 return lhs == null ? rhs == null
1248 : lhs.activityInfo == null ? rhs.activityInfo == null
1249 : Objects.equals(lhs.activityInfo.name, rhs.activityInfo.name)
1250 && Objects.equals(lhs.activityInfo.packageName, rhs.activityInfo.packageName);
1251 }
1252
arangelovb0802dc2019-10-18 18:03:44 +01001253 @Override // ResolverListCommunicator
1254 public void onHandlePackagesChanged() {
1255 if (mAdapter.getCount() == 0) {
1256 // We no longer have any items... just finish the activity.
1257 finish();
Zhen Zhang55d66aa2019-10-14 17:11:19 -07001258 }
Zhen Zhang55d66aa2019-10-14 17:11:19 -07001259 }
Alison Cichowlas1c8816c2019-04-03 17:43:22 -04001260
Hakan Seyalioglue1276bf2016-12-07 16:38:57 -08001261 @VisibleForTesting
1262 public static final class ResolvedComponentInfo {
Adam Powell2ed547e2015-04-29 18:45:04 -07001263 public final ComponentName name;
1264 private final List<Intent> mIntents = new ArrayList<>();
1265 private final List<ResolveInfo> mResolveInfos = new ArrayList<>();
1266
1267 public ResolvedComponentInfo(ComponentName name, Intent intent, ResolveInfo info) {
1268 this.name = name;
1269 add(intent, info);
1270 }
1271
1272 public void add(Intent intent, ResolveInfo info) {
1273 mIntents.add(intent);
1274 mResolveInfos.add(info);
1275 }
1276
1277 public int getCount() {
1278 return mIntents.size();
1279 }
1280
1281 public Intent getIntentAt(int index) {
1282 return index >= 0 ? mIntents.get(index) : null;
1283 }
1284
1285 public ResolveInfo getResolveInfoAt(int index) {
1286 return index >= 0 ? mResolveInfos.get(index) : null;
1287 }
1288
1289 public int findIntent(Intent intent) {
1290 for (int i = 0, N = mIntents.size(); i < N; i++) {
1291 if (intent.equals(mIntents.get(i))) {
1292 return i;
1293 }
1294 }
1295 return -1;
1296 }
1297
1298 public int findResolveInfo(ResolveInfo info) {
1299 for (int i = 0, N = mResolveInfos.size(); i < N; i++) {
1300 if (info.equals(mResolveInfos.get(i))) {
1301 return i;
1302 }
1303 }
1304 return -1;
1305 }
1306 }
1307
Adam Powell7d758002015-05-06 17:49:36 -07001308 class ItemClickListener implements AdapterView.OnItemClickListener,
1309 AdapterView.OnItemLongClickListener {
1310 @Override
1311 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
1312 final ListView listView = parent instanceof ListView ? (ListView) parent : null;
1313 if (listView != null) {
1314 position -= listView.getHeaderViewsCount();
1315 }
1316 if (position < 0) {
1317 // Header views don't count.
1318 return;
1319 }
Hakan Seyalioglu23f34652017-02-03 09:38:35 -08001320 // If we're still loading, we can't yet enable the buttons.
1321 if (mAdapter.resolveInfoForPosition(position, true) == null) {
1322 return;
1323 }
1324
Adam Powell7d758002015-05-06 17:49:36 -07001325 final int checkedPos = mAdapterView.getCheckedItemPosition();
1326 final boolean hasValidSelection = checkedPos != ListView.INVALID_POSITION;
Hakan Seyalioglu13405c52017-01-31 19:01:31 -08001327 if (!useLayoutWithDefault()
Ruchi Kandoi65d76c12017-08-18 13:05:39 -07001328 && (!hasValidSelection || mLastSelected != checkedPos)
Matt Pietal0d6834a2019-06-27 13:27:52 -04001329 && mAlwaysButton != null) {
1330 setAlwaysButtonEnabled(hasValidSelection, checkedPos, true);
Adam Powell7d758002015-05-06 17:49:36 -07001331 mOnceButton.setEnabled(hasValidSelection);
1332 if (hasValidSelection) {
1333 mAdapterView.smoothScrollToPosition(checkedPos);
1334 }
1335 mLastSelected = checkedPos;
1336 } else {
1337 startSelected(position, false, true);
1338 }
1339 }
Adam Powell2d809622012-03-22 15:24:43 -07001340
1341 @Override
1342 public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
Adam Powell7d758002015-05-06 17:49:36 -07001343 final ListView listView = parent instanceof ListView ? (ListView) parent : null;
1344 if (listView != null) {
1345 position -= listView.getHeaderViewsCount();
Adam Powell24428412015-04-01 17:19:56 -07001346 }
Adam Powellfd1e93d2014-09-07 16:52:22 -07001347 if (position < 0) {
1348 // Header views don't count.
1349 return false;
1350 }
Adam Powell278902c2014-07-12 18:33:22 -07001351 ResolveInfo ri = mAdapter.resolveInfoForPosition(position, true);
Adam Powell23882512016-01-29 10:21:00 -08001352 showTargetDetails(ri);
Adam Powell2d809622012-03-22 15:24:43 -07001353 return true;
1354 }
1355
1356 }
Adam Powell0256c6f2013-05-29 16:42:33 -07001357
Dianne Hackbornec452d92014-11-11 17:16:56 -08001358 static final boolean isSpecificUriMatch(int match) {
1359 match = match&IntentFilter.MATCH_CATEGORY_MASK;
1360 return match >= IntentFilter.MATCH_CATEGORY_HOST
1361 && match <= IntentFilter.MATCH_CATEGORY_PATH;
1362 }
1363
Adam Powell4c470d62015-06-19 17:46:17 -07001364 static class PickTargetOptionRequest extends PickOptionRequest {
1365 public PickTargetOptionRequest(@Nullable Prompt prompt, Option[] options,
1366 @Nullable Bundle extras) {
1367 super(prompt, options, extras);
1368 }
1369
1370 @Override
1371 public void onCancel() {
1372 super.onCancel();
1373 final ResolverActivity ra = (ResolverActivity) getActivity();
1374 if (ra != null) {
1375 ra.mPickOptionRequest = null;
1376 ra.finish();
1377 }
1378 }
1379
1380 @Override
1381 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) {
1382 super.onPickOptionResult(finished, selections, result);
1383 if (selections.length != 1) {
1384 // TODO In a better world we would filter the UI presented here and let the
1385 // user refine. Maybe later.
1386 return;
1387 }
1388
1389 final ResolverActivity ra = (ResolverActivity) getActivity();
1390 if (ra != null) {
1391 final TargetInfo ti = ra.mAdapter.getItem(selections[0].getIndex());
1392 if (ra.onTargetSelected(ti, false)) {
1393 ra.mPickOptionRequest = null;
1394 ra.finish();
1395 }
1396 }
1397 }
1398 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001399}