撥打電話事件
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);
}