1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Fix the span range for the text in front of the message preview

This commit is contained in:
cketti 2013-01-30 19:31:06 +01:00
parent dae3b776ff
commit 77da312354

View File

@ -1779,7 +1779,7 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
mFontSizes.getMessageListSender(); mFontSizes.getMessageListSender();
AbsoluteSizeSpan span = new AbsoluteSizeSpan(fontSize, true); AbsoluteSizeSpan span = new AbsoluteSizeSpan(fontSize, true);
str.setSpan(span, 0, beforePreviewText.length() + 1, str.setSpan(span, 0, beforePreviewText.length() + sigil.length(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
//TODO: make this part of the theme //TODO: make this part of the theme
@ -1788,7 +1788,7 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
Color.rgb(160, 160, 160); Color.rgb(160, 160, 160);
// Set span (color) for preview message // Set span (color) for preview message
str.setSpan(new ForegroundColorSpan(color), beforePreviewText.length() + 1, str.setSpan(new ForegroundColorSpan(color), beforePreviewText.length() + sigil.length(),
str.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); str.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
Drawable statusHolder = null; Drawable statusHolder = null;