发布网友 发布时间:2022-04-22 04:23
共4个回答
热心网友 时间:2023-10-04 20:50
或者把图片放在层里也好任意移动图片的位置,只是可能有些IE对图层内容不能正常显示。 你给图片设个浮动,就可以图文混排,用css样式定义或用对齐方式
热心网友 时间:2023-10-04 20:51
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);
热心网友 时间:2023-10-04 20:51
用webview加载
热心网友 时间:2023-10-04 20:52
或者把图片放在层里也好任意移动图片的位置,只是可能有些IE对图层内容不能正常显示。 你给图片设个浮动,就可以图文混排,用css样式定义或用对齐方式