Yes it is possible. Code to call directly.
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:09999"));
startActivity(intent);
Use your number instead 09999. Do not forget to specify the permission to call in Android Manifest.xml
source
share