This is the intention to call
Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+phoneno)); startActivity(intent);
& Do not miss adding permission to Maniefiest
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
source share