Click here to Skip to main content
15,867,594 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I get email that comes through intent-filter in android ? Currently I tried this, I could get the Action SEND, but the Extra_EMail is null.

Java
Intent intent = getIntent();
String action = intent.getAction();
String type = intent.getType();


String sharedText = intent.getStringExtra(Intent.EXTRA_EMAIL);
if (sharedText != null) {
    Toast.makeText(getApplicationContext(), sharedText,
            Toast.LENGTH_LONG).show();

    mEdit.setText(sharedText);
}
Posted
Comments
JoCodes 17-Aug-14 12:56pm    
Can you show how ur Manifest looks?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900