Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.Intent; import android.net.Uri; public class Main { public static void makeCall(String phoneNumber, Context context) { String number = String.format("tel:%s", phoneNumber); Intent callIntent = new Intent(Intent.ACTION_DIAL, Uri.parse(number)); context.startActivity(callIntent); } }