android无法显示表情符号图像?

时间:2014-05-05 07:44:40

标签: android xmpp

我正在制作一个聊天应用程序,其中我向用户发送表情符号表情符号。我的表情符号opreation工作部分。但问题是,当我发送任何笑脸图像时,它进入对象并以对象形式显示。 ,像这样

enter image description here

我希望展示我在蓝色圆圈中指出的笑脸。我很困惑,从3天内找到了这个解决方案,但没有成功...,我做的请帮助p ..,这是我的代码< / p>

这里是适配器类

  Msg = (TextView) convertView.findViewById(R.id.Msg);
            //Msg.setText(Html.fromHtml(nameAndText[1] ));

            //               TextView textView2 = (TextView)findViewById( R.id.TextView2 );
            SpannableStringBuilder ssb = new SpannableStringBuilder(nameAndText[1]);
            //Bitmap smiley = BitmapFactory.decodeResource( getResources(), R.drawable.emoticon );

            //ssb.setSpan(smiley, 16, 17, Spannable.SPAN_INCLUSIVE_INCLUSIVE );    
            Msg.setText( ssb, BufferType.SPANNABLE );

            System.out.println("<ssssssssssssssss>>>>>>>>."+Msg.toString());

并点击此链接here

提前致谢

0 个答案:

没有答案