You can call any number using the following code:
String Numb = "tel:" + "your number";
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(Numb));
startActivity(intent);
enable the following permission:
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
source
share