1. 程式人生 > >Android打電話直接撥號、跳轉到撥號面板、跳轉到聯絡人

Android打電話直接撥號、跳轉到撥號面板、跳轉到聯絡人

說明:

Android打電話三種種情況:直接撥號、跳轉到撥號面板、跳轉到聯絡人。

程式碼:

1、直接撥打電話

Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));
startActivity(intentPhone);

2、跳轉到撥號面板

Intent intent = newIntent(Intent.ACTION_DIAL,Uri.parse("tel:" + phoneNumber));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

3、跳轉到聯絡人

Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));
startActivity(intentPhone);