summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java
diff options
context:
space:
mode:
authorlinyuh <linyuh@google.com>2018-06-07 17:34:13 -0700
committerCopybara-Service <copybara-piper@google.com>2018-06-07 18:43:10 -0700
commitbac4da9d520846ab4e4f8cbcbb80927076deec27 (patch)
treec32cdaeff8e83f712332a27f603809686db53139 /java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java
parentecd339905308fd7101a6bf35d947bc6432e1b331 (diff)
Wrap phone numbers in custom content descriptions in the new call log with TTS span.
Bug: 70989658 Test: Manual (TTS span is not testable) PiperOrigin-RevId: 199724621 Change-Id: I6dc809660eecdd987ee966f30b68dbbf7bcf2094
Diffstat (limited to 'java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java')
-rw-r--r--java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java53
1 files changed, 27 insertions, 26 deletions
diff --git a/java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java b/java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java
index 244087989..52f0cfdb7 100644
--- a/java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java
+++ b/java/com/android/dialer/calllogutils/CallLogEntryDescriptions.java
@@ -20,6 +20,7 @@ import android.content.Context;
import android.provider.CallLog.Calls;
import android.support.annotation.PluralsRes;
import android.telecom.PhoneAccountHandle;
+import android.telephony.PhoneNumberUtils;
import android.text.TextUtils;
import com.android.dialer.calllog.model.CoalescedRow;
import com.android.dialer.telecom.TelecomUtil;
@@ -65,13 +66,14 @@ public final class CallLogEntryDescriptions {
// (2) For entries containing multiple calls:
// "2 calls, the latest is a missed call from Jame Smith".
CharSequence primaryDescription =
- context
- .getResources()
- .getQuantityString(
- getPrimaryDescriptionResIdForCallType(row),
- row.getCoalescedIds().getCoalescedIdCount(),
- row.getCoalescedIds().getCoalescedIdCount(),
- CallLogEntryText.buildPrimaryText(context, row));
+ TextUtils.expandTemplate(
+ context
+ .getResources()
+ .getQuantityString(
+ getPrimaryDescriptionResIdForCallType(row),
+ row.getCoalescedIds().getCoalescedIdCount()),
+ String.valueOf(row.getCoalescedIds().getCoalescedIdCount()),
+ CallLogEntryText.buildPrimaryText(context, row));
// Build the secondary description.
// An example: "mobile, 11 minutes ago".
@@ -85,19 +87,20 @@ public final class CallLogEntryDescriptions {
CharSequence phoneAccountDescription = buildPhoneAccountDescription(context, row);
return TextUtils.isEmpty(phoneAccountDescription)
- ? context
- .getResources()
- .getString(
- R.string.a11y_new_call_log_entry_full_description_without_phone_account_info,
- primaryDescription,
- secondaryDescription)
- : context
- .getResources()
- .getString(
- R.string.a11y_new_call_log_entry_full_description_with_phone_account_info,
- primaryDescription,
- secondaryDescription,
- phoneAccountDescription);
+ ? TextUtils.expandTemplate(
+ context
+ .getResources()
+ .getText(
+ R.string.a11y_new_call_log_entry_full_description_without_phone_account_info),
+ primaryDescription,
+ secondaryDescription)
+ : TextUtils.expandTemplate(
+ context
+ .getResources()
+ .getText(R.string.a11y_new_call_log_entry_full_description_with_phone_account_info),
+ primaryDescription,
+ secondaryDescription,
+ phoneAccountDescription);
}
private static @PluralsRes int getPrimaryDescriptionResIdForCallType(CoalescedRow row) {
@@ -139,12 +142,10 @@ public final class CallLogEntryDescriptions {
return "";
}
- return context
- .getResources()
- .getString(
- R.string.a11y_new_call_log_entry_phone_account,
- phoneAccountLabel,
- row.getNumber().getNormalizedNumber());
+ return TextUtils.expandTemplate(
+ context.getResources().getText(R.string.a11y_new_call_log_entry_phone_account),
+ phoneAccountLabel,
+ PhoneNumberUtils.createTtsSpannable(row.getNumber().getNormalizedNumber()));
}
private static CharSequence joinSecondaryTextComponents(List<CharSequence> components) {