이 답변은 18446744073709551615의 우수한 답변 을 기반으로 합니다 . 그들의 솔루션은 도움이되지만 주변 텍스트와 함께 이미지 아이콘의 크기를 조정하지 않습니다. 또한 아이콘 색상을 주변 텍스트의 색상으로 설정하지 않습니다.
아래 솔루션은 흰색 사각형 아이콘을 사용하여 주변 텍스트의 크기와 색상에 맞 춥니 다.
public class TextViewWithImages extends TextView {
private static final String DRAWABLE = "drawable";
public static final String PATTERN = "\\Q[img src=\\E([a-zA-Z0-9_]+?)\\Q/]\\E";
public TextViewWithImages(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public TextViewWithImages(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TextViewWithImages(Context context) {
super(context);
}
@Override
public void setText(CharSequence text, BufferType type) {
final Spannable spannable = getTextWithImages(getContext(), text, getLineHeight(), getCurrentTextColor());
super.setText(spannable, BufferType.SPANNABLE);
}
private static Spannable getTextWithImages(Context context, CharSequence text, int lineHeight, int colour) {
final Spannable spannable = Spannable.Factory.getInstance().newSpannable(text);
addImages(context, spannable, lineHeight, colour);
return spannable;
}
private static boolean addImages(Context context, Spannable spannable, int lineHeight, int colour) {
final Pattern refImg = Pattern.compile(PATTERN);
boolean hasChanges = false;
final Matcher matcher = refImg.matcher(spannable);
while (matcher.find()) {
boolean set = true;
for (ImageSpan span : spannable.getSpans(matcher.start(), matcher.end(), ImageSpan.class)) {
if (spannable.getSpanStart(span) >= matcher.start()
&& spannable.getSpanEnd(span) <= matcher.end()) {
spannable.removeSpan(span);
} else {
set = false;
break;
}
}
final String resName = spannable.subSequence(matcher.start(1), matcher.end(1)).toString().trim();
final int id = context.getResources().getIdentifier(resName, DRAWABLE, context.getPackageName());
if (set) {
hasChanges = true;
spannable.setSpan(makeImageSpan(context, id, lineHeight, colour),
matcher.start(),
matcher.end(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE
);
}
}
return hasChanges;
}
private static ImageSpan makeImageSpan(Context context, int drawableResId, int size, int colour) {
final Drawable drawable = context.getResources().getDrawable(drawableResId);
drawable.mutate();
drawable.setColorFilter(colour, PorterDuff.Mode.MULTIPLY);
drawable.setBounds(0, 0, size, size);
return new ImageSpan(drawable, ImageSpan.ALIGN_BOTTOM);
}
}
사용하는 방법:
텍스트에 원하는 아이콘에 대한 참조를 포함하기 만하면됩니다. 텍스트가 프로그래밍 방식으로 설정되었는지 textView.setText(R.string.string_resource);
또는 xml 로 설정되었는지는 중요하지 않습니다 .
example.png라는 드로어 블 아이콘을 포함하려면 텍스트에 다음 문자열을 포함합니다 [img src=example/]
..
예를 들어 문자열 리소스는 다음과 같습니다.
<string name="string_resource">This [img src=example/] is an icon.</string>