Show text or icons for call log items.
The current code uses the small icons to show the type of call. The
design we want to implement allows for both icons and text to be
present, depending on the context.
This change adds a boolean flag to determine which one to use.
Change-Id: Ia3ec8bba44f46a4b4857654ffc0256e1af909741
diff --git a/src/com/android/contacts/CallDetailActivity.java b/src/com/android/contacts/CallDetailActivity.java
index 1200cdf..5a795e2 100644
--- a/src/com/android/contacts/CallDetailActivity.java
+++ b/src/com/android/contacts/CallDetailActivity.java
@@ -305,7 +305,7 @@
}
mPhoneCallDetailsHelper.setPhoneCallDetails(mPhoneCallDetailsViews,
new PhoneCallDetails(numberText, callType, date, nameText, numberType,
- numberLabel));
+ numberLabel), false);
loadContactPhotos(photoId);
} else {