android image wrapped by text
I would like to insert image into text, for example:
I would like to show t开发者_开发问答he text likie this:
"To edit picture you should click on" [image] "button."
Where [image] is real image (e.g. ImageView)
you can try this,i donot know if this is your need:
setContentView(R.layout.main);
TextView textView = (TextView) findViewById(R.id.textview);
SpannableString ss = new SpannableString("abc");
Drawable d = getResources().getDrawable(R.drawable.icon32);
d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);
ss.setSpan(span, 0, 3, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
textView.setText(ss);
精彩评论