Android: launch android dialer with mobile number

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

Comments