1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Message: render(): Dynamic icon size

This commit is contained in:
Sebastian Kaspari 2010-03-06 19:31:24 +01:00
parent c5eef56151
commit b1e7a35acf

View File

@ -96,7 +96,7 @@ public class Message {
canvas = new SpannableString("\n " + text);
if (hasIcon()) {
Drawable drawable = context.getResources().getDrawable(icon);
drawable.setBounds(0, 0, 16, 16);
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
canvas.setSpan(new ImageSpan(drawable, ImageSpan.ALIGN_BOTTOM), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}
}