Simple drawee spannable text view based on Fresco
Last updated May 13, 2026
754
Stars
99
Forks
3
Issues
0
Stars/day
Attention Score
53
Language breakdown
No language data available.
βΈ Files
click to expand
README
DraweeTextView
Simple drawee spannable text view based on [Fresco][1].Usage
DraweeTextView textview = (DraweeTextView)findViewById(R.id.text);
SpannableStringBuilder builder = new SpannableStringBuilder(); builder.append("2333333\n") start = builder.length(); builder.append("[emotion:tv_cheers]"); DraweeSpan span = new DraweeSpan("http://static.yo9.com/web/emotions/tv_cheers.png"); builder.setSpan(span, start, builder.length(), Spanned.SPANEXCLUSIVEEXCLUSIVE); builder.append("bilibili- ( γ- γ)γ€γ δΉΎζ―~\n");
...
textview.setText(builder);
[1]: https://github.com/facebook/fresco
π More in this category