Add drop shadows and roundier corners to new bubbles.

// FREEBIE
This commit is contained in:
Jake McGinty
2015-06-29 14:38:52 -07:00
committed by Moxie Marlinspike
parent db9656c70c
commit 99c9c73c9d
13 changed files with 14 additions and 27 deletions

View File

@@ -191,7 +191,7 @@ public class ConversationItem extends LinearLayout {
int[] attributes = new int[]{R.attr.conversation_item_bubble_background};
TypedArray colors = context.obtainStyledAttributes(attributes);
bodyBubble.getBackground().setColorFilter(colors.getColor(0, 0xFFFFFF), PorterDuff.Mode.SRC_ATOP);
bodyBubble.getBackground().setColorFilter(colors.getColor(0, 0xFFFFFFFF), PorterDuff.Mode.MULTIPLY);
colors.recycle();
}