Reputation: 1188
I'm trying to show smiley(or a image span) in android notification text. And its not working. Anyone know how to do it ? Thanks.
Code is below:
SpannableStringBuilder builder = new SpannableStringBuilder(text);
builder.setSpan(imageSpan,0, 1,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
Imagespan works everywhere, but not in notification.
Solved, Thanks,Imagespan won't work.But i solved the problem using unicode.
Upvotes: 1
Views: 917
Reputation: 103
At server side, Encode your message using URLEncoder.encode() method.
In your android app, Decode the same message using URLDecoder.decode() method.
Upvotes: 1