从包中检索 android.intent.extra.EMAIL 值

Retrieve android.intent.extra.EMAIL value from bundle

我创建了一个类似电子邮件客户端应用程序的应用程序,例如 Gmail

当用户在其他应用程序中单击电子邮件地址并从列表中的电子邮件发送应用程序中选择我的应用程序时,出现在 .

电子邮件地址、电子邮件主题等电子邮件内容......有意进入我的应用程序。

但问题是 intent.getData(); 一直都是 null 值,我尝试从 intent 获取电子邮件数据。

我在 intent 中测试了 bundle,我发现它不是空的,当我写这段代码时:

bundle = intent.getExtras();
                Log.e("Email",bundle.toString());

bundle.toString() return Bundle[{android.intent.extra.EMAIL=[Ljava.lang.String;@11cda76c}] .

我不知道这是什么 [Ljava.lang.String;@11cda76c}] 以及如何从这里获取电子邮件地址! ?

在这里找到答案 Passing values through bundle and get its value on another activity

bundle = this.getIntent().getExtras();
String email= bundle.getString("EMAIL");

编辑:

bundle = this.getIntent().getExtras();
String [] emails=bundle.getStringArray(Intent.EXTRA_EMAIL );