summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/ContactInfoCache.java
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-08-27 13:31:55 -0700
committerAndrew Lee <anwlee@google.com>2014-08-27 13:40:56 -0700
commit5f84e76212ab1ae15a507cb88f9a44557b640e80 (patch)
tree6bd077622d013623bdd3c0109f52fc7eabff2183 /InCallUI/src/com/android/incallui/ContactInfoCache.java
parente6f5fe95a766240d36d74e4613c7cbeb9dcad778 (diff)
InCallUi image resource updates (mostly deletions).
- Deleted a ton of assets which were no longer used. + Automirrored some assets so their rtl copies could be removed. Bug: 15862303 Change-Id: I8aa832eead1768c82741fbe97268ea44ba0fc9ff
Diffstat (limited to 'InCallUI/src/com/android/incallui/ContactInfoCache.java')
-rw-r--r--InCallUI/src/com/android/incallui/ContactInfoCache.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/InCallUI/src/com/android/incallui/ContactInfoCache.java b/InCallUI/src/com/android/incallui/ContactInfoCache.java
index ccf5b794b..70a7f841e 100644
--- a/InCallUI/src/com/android/incallui/ContactInfoCache.java
+++ b/InCallUI/src/com/android/incallui/ContactInfoCache.java
@@ -312,10 +312,12 @@ public class ContactInfoCache implements ContactsAsyncHelper.OnImageLoadComplete
if (info.cachedPhoto != null) {
photo = info.cachedPhoto;
} else {
- photo = context.getResources().getDrawable(R.drawable.picture_unknown);
+ photo = context.getResources().getDrawable(R.drawable.img_no_image);
+ photo.setAutoMirrored(true);
}
} else if (info.contactDisplayPhotoUri == null) {
- photo = context.getResources().getDrawable(R.drawable.picture_unknown);
+ photo = context.getResources().getDrawable(R.drawable.img_no_image);
+ photo.setAutoMirrored(true);
} else {
cce.displayPhotoUri = info.contactDisplayPhotoUri;
}