android 怎么实现图文混排 如图所示的效果

发布网友 发布时间: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样式定义或用对齐方式

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com