Sreejith B Naick
Sreejith B Naick

Reputation: 1188

Is it possible to show Smiley/Emoticon/Image span in android notification text?

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

Answers (1)

Shubham Gupta
Shubham Gupta

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

Related Questions