mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-22 08:52:18 -05:00
Only prefix message with a space if there's an icon to show
This commit is contained in:
parent
b57a9c369c
commit
bd932234f5
@ -93,7 +93,11 @@ public class Message {
|
||||
public SpannableString render(Context context)
|
||||
{
|
||||
if (canvas == null) {
|
||||
canvas = new SpannableString("\n " + text);
|
||||
String prefix = "\n";
|
||||
if (hasIcon()) {
|
||||
prefix = " " + prefix;
|
||||
}
|
||||
canvas = new SpannableString(prefix + text);
|
||||
if (hasIcon()) {
|
||||
Drawable drawable = context.getResources().getDrawable(icon);
|
||||
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
|
||||
|
Loading…
Reference in New Issue
Block a user