fix: star color in spannable string

This commit is contained in:
xtaodada 2024-07-01 15:58:27 +08:00
parent 19e5fa419d
commit 0a54673534
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -1891,7 +1891,7 @@ public class StarsIntroActivity extends GradientHeaderActivity implements Notifi
}
SpannableString spacedStar = new SpannableString("");
ColoredImageSpan span = new ColoredImageSpan(R.drawable.star_small_inner);
span.recolorDrawable = false;
// span.recolorDrawable = false;
span.setScale(scale, scale);
spacedStar.setSpan(span, 0, spacedStar.length() - 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
AndroidUtilities.replaceMultipleCharSequence("⭐️", ssb, "");