Tenemos la mejor solución que hallamos on line. Nuestro deseo es que te sirva de ayuda y si quieres compartir algo que nos pueda ayudar a crecer hazlo con libertad.
Solución:
Prueba esto ..
txtview.setCompoundDrawablesWithIntrinsicBounds(
R.drawable.image, 0, 0, 0);
También vea esto .. http://developer.android.com/reference/android/widget/TextView.html
Prueba esto en un archivo xml
com/xyz/customandroid/TextViewWithImages.Java:
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.content.Context;
import android.text.Spannable;
import android.text.style.ImageSpan;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.TextView;
public class TextViewWithImages extends TextView
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)
Spannable s = getTextWithImages(getContext(), text);
super.setText(s, BufferType.SPANNABLE);
private static final Spannable.Factory spannableFactory = Spannable.Factory.getInstance();
private static boolean addImages(Context context, Spannable spannable)
Pattern refImg = Pattern.compile("\Q[img src=\E([a-zA-Z0-9_]+?)\Q/]\E");
boolean hasChanges = false;
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;
String resname = spannable.subSequence(matcher.start(1), matcher.end(1)).toString().trim();
int id = context.getResources().getIdentifier(resname, "drawable", context.getPackageName());
if (set)
hasChanges = true;
spannable.setSpan( new ImageSpan(context, id),
matcher.start(),
matcher.end(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE
);
return hasChanges;
private static Spannable getTextWithImages(Context context, CharSequence text)
Spannable spannable = spannableFactory.newSpannable(text);
addImages(context, spannable);
return spannable;
Utilizar:
en res/layout/mylayout.xml:
Tenga en cuenta que si coloca VistaDeTextoConImágenes.java en algún lugar que no sea com/xyz/customandroid/también debe cambiar el nombre del paquete, com.xyz.customandroid
encima.
en res/valores/cadenas.xml:
Press [img src=ok16/] to accept or [img src=retry16/] to retry
donde ok16.png y reintentar16.png son iconos en el res/dibujable/ carpeta
Probé muchas soluciones diferentes y esta para mí fue la mejor:
SpannableStringBuilder ssb = new SpannableStringBuilder(" Hello world!");
ssb.setSpan(new ImageSpan(context, R.drawable.image), 0, 1, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
tv_text.setText(ssb, TextView.BufferType.SPANNABLE);
Este código utiliza un mínimo de memoria.