TextView tv = new TextView(m_con);
SpannableStringBuilder picStr = new SpannableStringBuilder();
picStr.append(new String("插入图片1"));
Bitmap bmp = BitmapFactory.decodeFile("xxx.bmp");
ImageSpan is = new ImageSpan(m_con,bmp,ImageSpan.ALIGN_BASELINE);
picStr.setSpan(is,pisStr.length() - 1, picStr.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
tv.setText(picStr);