android – 如何判断哪个应用程序被Intent.createChooser选中?

前端之家收集整理的这篇文章主要介绍了android – 如何判断哪个应用程序被Intent.createChooser选中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
码:
Intent launchIntent = new Intent(Intent.ACTION_MAIN);
        launchIntent.addCategory(Intent.CATEGORY_HOME);
        Intent chooser  = Intent.createChooser(launchIntent,"Complete Action using..");
        activity.startActivity(chooser);

我没有看到任何方式告诉哪个Intent(HOME类别启动器)被选中.没有Inent.addOnActionSetListener,没有chooser.addOnIntentChosenListener等等,那么我该怎么判断哪个被选中了?或者我要为自己选择自己的选择吗?

解决方法

在Android 5.1上,您可以使用 the three-parameter edition of the createChooser() method,其中最后一个参数是IntentSender,您可以使用它来了解所选的内容.

在Android 5.1之前,Android中没有什么可以让你知道用户选择什么.

原文链接:https://www.f2er.com/android/312133.html

猜你在找的Android相关文章