Home
last modified time | relevance | path

Searched refs:chooserIntent (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/
H A DIntentCreator.java62 Intent chooserIntent = Intent.createChooser(shareIntent, null) in getShareIntent() local
66 return chooserIntent; in getShareIntent()
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/app/
H A DChooserActivityTest.java2597 Intent chooserIntent = createChooserIntent(createSendTextIntent(), in testOneInitialIntent_noAutolaunch() local
2678 mActivityRule.launchActivity(chooserIntent); in testWorkTab_xProfileIntentsDisabled_personalToWork_nonSendIntent_emptyStateShown()
2712 mActivityRule.launchActivity(chooserIntent); in testWorkTab_noWorkAppsAvailable_nonSendIntent_emptyStateShown()
2735 Intent chooserIntent = createChooserIntent(createSendTextIntent(), in testDeduplicateCallerTargetRankedTarget() local
2952 Intent chooserIntent = new Intent(); in createChooserIntent() local
2953 chooserIntent.setAction(Intent.ACTION_CHOOSER); in createChooserIntent()
2954 chooserIntent.putExtra(Intent.EXTRA_TEXT, "testing intent sending"); in createChooserIntent()
2955 chooserIntent.putExtra(Intent.EXTRA_TITLE, "some title"); in createChooserIntent()
2956 chooserIntent.putExtra(Intent.EXTRA_INTENT, intent); in createChooserIntent()
2957 chooserIntent.setType("text/plain"); in createChooserIntent()
[all …]
/aosp14/frameworks/base/packages/EasterEgg/src/com/android/egg/widget/
H A DPaintChipsWidget.kt278 val chooserIntent = Intent.createChooser(shareIntent, null).apply { regex
282 return PendingIntent.getActivity(context, 0, chooserIntent,
/aosp14/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java1284 final Intent chooserIntent = Intent.createChooser(intent, in sendShareIntent() local
1289 chooserIntent.putExtra(ChooserActivity.EXTRA_PRIVATE_RETAIN_IN_ON_STOP, true); in sendShareIntent()
1291 chooserIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in sendShareIntent()
1292 context.startActivity(chooserIntent); in sendShareIntent()