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
Post a Comment