summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java')
-rw-r--r--java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java b/java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java
index 628ef87eb..d045b1bd3 100644
--- a/java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java
+++ b/java/com/android/dialer/app/voicemail/error/VoicemailErrorAlert.java
@@ -18,6 +18,7 @@ package com.android.dialer.app.voicemail.error;
import android.content.Context;
import android.support.annotation.VisibleForTesting;
+import android.text.util.Linkify;
import android.view.View;
import android.widget.TextView;
import com.android.dialer.app.alert.AlertManager;
@@ -119,6 +120,7 @@ public class VoicemailErrorAlert {
TextView tosTitle = (TextView) view.findViewById(R.id.tos_message_title);
tosTitle.setText(message.getTitle());
TextView tosDetails = (TextView) view.findViewById(R.id.tos_message_details);
+ tosDetails.setAutoLinkMask(Linkify.WEB_URLS);
tosDetails.setText(message.getDescription());
Assert.checkArgument(message.getActions().size() == 2);