拨打电话事件
public static void callPhone(Activity activity, String phone) {
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phone));
activity.startActivity(intent);
}
拨打电话事件
public static void callPhone(Activity activity, String phone) {
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phone));
activity.startActivity(intent);
}