summaryrefslogtreecommitdiff
path: root/InCallUI/src/com/android/incallui/CallCardFragment.java
diff options
context:
space:
mode:
Diffstat (limited to 'InCallUI/src/com/android/incallui/CallCardFragment.java')
-rw-r--r--InCallUI/src/com/android/incallui/CallCardFragment.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/CallCardFragment.java b/InCallUI/src/com/android/incallui/CallCardFragment.java
index 600689c84..f5e718c8b 100644
--- a/InCallUI/src/com/android/incallui/CallCardFragment.java
+++ b/InCallUI/src/com/android/incallui/CallCardFragment.java
@@ -432,6 +432,7 @@ public class CallCardFragment extends BaseFragment<CallCardPresenter, CallCardPr
if (isConference) {
name = getConferenceString(isGeneric);
photo = getConferencePhoto(isGeneric);
+ photo.setAutoMirrored(true);
nameIsNumber = false;
}
@@ -596,7 +597,8 @@ public class CallCardFragment extends BaseFragment<CallCardPresenter, CallCardPr
private void setDrawableToImageView(ImageView view, Drawable photo) {
if (photo == null) {
- photo = view.getResources().getDrawable(R.drawable.picture_unknown);
+ photo = view.getResources().getDrawable(R.drawable.img_no_image);
+ photo.setAutoMirrored(true);
}
final Drawable current = view.getDrawable();