TextViewで画像をスマイリーとして表示したい。文字列を取得し、ImageSpans を CharSequence に追加して、:-)などのテキストの絵文字をグラフィカル バージョンに置き換えるメソッドがあります。
public Spannable addSmileySpans(CharSequence text) {
SpannableStringBuilder builder = new SpannableStringBuilder(text);
Matcher matcher = mPattern.matcher(text);
while (matcher.find()) {
int resId = mSmileyToRes.get(matcher.group());
builder.setSpan(new ImageSpan(mContext, resId),
matcher.start(), matcher.end(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
}
return builder;
}
次に、アダプターで使用します。
viewHolder.txtReceivedBody.setText(parser.addSmileySpans(message.body));
また、ここで定義されている TextView 要素:
<TextView
android:id="@+id/txtReceivedBody"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/imgReceivedDirection"
android:layout_marginRight="30dp"
android:background="@drawable/selector_conversation_received"
android:minHeight="40dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:textSize="18sp"
android:autoLink="all"
android:gravity="right"/>
残念ながら、TextView に画像を表示せず、メインの文字列のみを表示しました。それを解決するにはどうすればよいですか?