如何知道用户在使用意向选择器时选择的应用程序?

时间:2012-05-16 07:33:41

标签: android android-intent

我正在使用意图选择器来邀请朋友:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, Resources.getString("InvitationSubject", getBaseContext()));

String body = Resources.getString("InvitationBody", getBaseContext()) + Local.User.FirstName;

intent.putExtra(Intent.EXTRA_TEXT, body);

startActivity(Intent.createChooser(intent, "Invite friends"));

有没有办法知道用户在选择器中选择了哪个应用程序?

1 个答案:

答案 0 :(得分:1)

据我所知,没有直接的方法来收集这些信息。你需要什么? Imho Android意图系统的设计使您作为应用程序开发人员,不必担心用户选择处理您意图的应用程序。