码:
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中没有什么可以让你知道用户选择什么.