Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5abe515 authored by Yao Lu's avatar Yao Lu Committed by Android (Google) Code Review
Browse files

Merge "Call icon can't be displayed correctly" into ub-contactsdialer-h-dev

parents b9065ddb 168a7a79
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -131,12 +131,12 @@ public class CallLogInteraction implements ContactInteraction {
        switch (type) {
            case Calls.INCOMING_TYPE:
                callArrow = res.getDrawable(CALL_ARROW_ICON_RES);
                callArrow.setColorFilter(res.getColor(R.color.call_arrow_green),
                callArrow.mutate().setColorFilter(res.getColor(R.color.call_arrow_green),
                        PorterDuff.Mode.MULTIPLY);
                break;
            case Calls.MISSED_TYPE:
                callArrow = res.getDrawable(CALL_ARROW_ICON_RES);
                callArrow.setColorFilter(res.getColor(R.color.call_arrow_red),
                callArrow.mutate().setColorFilter(res.getColor(R.color.call_arrow_red),
                        PorterDuff.Mode.MULTIPLY);
                break;
            case Calls.OUTGOING_TYPE: