use of com.android.dialer.util.IntentUtil.CallIntentBuilder in project android_packages_apps_Dialer by MoKee.
the class MissedCallNotifier method callBackFromMissedCall.
/**
* Trigger an intent to make a call from a missed call number.
*/
public void callBackFromMissedCall(String number) {
closeSystemDialogs(mContext);
CallLogNotificationsHelper.removeMissedCallNotifications(mContext);
DialerUtils.startActivityWithErrorToast(mContext, new CallIntentBuilder(number).build().setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
}
Aggregations