'How to make phone numbers clickable in notifications content

I would like to make ContentTitle include a phone number that can dial.

NotificationCompat.Builder(context, notificationChannelId)
        .setLargeIcon(largeIcon)
        .setSmallIcon(smallIconRes)
        .setContentTitle(title).setContentText(description)
        .setStyle(NotificationCompat.BigTextStyle().bigText(description))
        .setDefaults(NotificationCompat.DEFAULT_ALL).setContentIntent(pendingIntent)
        .setPriority(NotificationCompat.PRIORITY_MAX)
        .setAutoCancel(isAutoCancel)

Thank you



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source