Android: launch android dialer with mobile number

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

Comments

Popular posts from this blog

Working with Android Hierarchy Viewer

Android: Standalone login with SQLiteOpenHelper