public static void dial(String phone_number, Activity activity) {
if(phone_number != null && !phone_number.equals(""))
{
//调用系统的拨号服务实现电话拨打功能
//封装一个拨打电话的intent,并且将电话号码包装成一个Uri对象传入
Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+phone_number));
activity.startActivity(intent);//内部类
}
}
if(phone_number != null && !phone_number.equals(""))
{
//调用系统的拨号服务实现电话拨打功能
//封装一个拨打电话的intent,并且将电话号码包装成一个Uri对象传入
Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+phone_number));
activity.startActivity(intent);//内部类
}
}