Posts

Showing posts from December, 2016

Android: launch android email with email id

Intent intent = new Intent ( Intent . ACTION_SENDTO , Uri. parse ( "mailto:" + mEmail .getText().toString())); intent.putExtra( Intent . EXTRA_EMAIL , mEmail .getText().toString()); startActivity( Intent . createChooser (intent, "Send Email" ));

Android: launch android dialer with mobile number

Intent intent = new Intent ( Intent . ACTION_DIAL , Uri. parse ( "tel:" + mContactNo .getText().toString())); startActivity(intent);