create email with send address already filled in on android -


i making app in android , trying make when click button, opens email app of choice (im using gmail) , automatically composes email, how make send address filled in>

this code

public void send( view v ){     intent emailintent = new intent(android.content.intent.action_send);     emailintent.settype("text/plain");     startactivity(emailintent);       } 

this need.

emailintent.putextra(intent.extra_email, "your_email_address"); 

Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -