diff options
| author | 2023-05-12 16:08:46 +0000 | |
|---|---|---|
| committer | 2023-05-12 16:08:46 +0000 | |
| commit | 45246ffd7da029d0a875f5f6950d8e730e1c2fc2 (patch) | |
| tree | 9c1269aab3fd65bc50e5688ddaadbc889c8e91f7 /java/src/com | |
| parent | 393d7edf82a7b4b9ec02fd87b53fe61fada0005f (diff) | |
| parent | 7b8928c9974e068b8ebdff94501d8c26f0c732c6 (diff) | |
Merge "Document that this ResolverActivity isn't directly used." into udc-dev
Diffstat (limited to 'java/src/com')
| -rw-r--r-- | java/src/com/android/intentresolver/ResolverActivity.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/java/src/com/android/intentresolver/ResolverActivity.java b/java/src/com/android/intentresolver/ResolverActivity.java index 5205f9b6..ac3b9a61 100644 --- a/java/src/com/android/intentresolver/ResolverActivity.java +++ b/java/src/com/android/intentresolver/ResolverActivity.java @@ -125,9 +125,10 @@ import java.util.Set; import java.util.function.Supplier; /** - * This activity is displayed when the system attempts to start an Intent for - * which there is more than one matching activity, allowing the user to decide - * which to go to. It is not normally used directly by application developers. + * This is a copy of ResolverActivity to support IntentResolver's ChooserActivity. This code is + * *not* the resolver that is actually triggered by the system right now (you want + * frameworks/base/core/java/com/android/internal/app/ResolverActivity.java for that), the full + * migration is not complete. */ @UiThread public class ResolverActivity extends FragmentActivity implements |