Use ALIGN_BOTTOM instead of ALIGN_BASELINE

This certainly looks better
Fixes b/6369828 When there are 2 chips/labels stacked top one is compressed

Change-Id: I345bd5feec16a5d9352d4ad20dfb9725d76bb208
diff --git a/src/com/android/ex/chips/RecipientChip.java b/src/com/android/ex/chips/RecipientChip.java
index 41d950f..0f93a0d 100644
--- a/src/com/android/ex/chips/RecipientChip.java
+++ b/src/com/android/ex/chips/RecipientChip.java
@@ -41,7 +41,7 @@
     private CharSequence mOriginalText;
 
     public RecipientChip(Drawable drawable, RecipientEntry entry, int offset) {
-        super(drawable, DynamicDrawableSpan.ALIGN_BASELINE);
+        super(drawable, DynamicDrawableSpan.ALIGN_BOTTOM);
         mDisplay = entry.getDisplayName();
         mValue = entry.getDestination().trim();
         mContactId = entry.getContactId();