我正在以midp形式创建一个ImageItem,但是,当文本换行到下一行时,图像将移到顶部,文本将以新行显示。任何想法如何避免这种情况?
示例:
*Image*
this is a a test, hello
world, this is a test
我需要它是这样的:
*Image* this is a test,
hello word, this is a test
或
this is a test, hello
*Image* world, this is a test
hello world
我的方法:
protected Item createItemWithIcon(String str, Image icon)
{
Item item = null;
item = new ImageItem(str, icon, Item.LAYOUT_VCENTER, "", Item.HYPERLINK);
form.append(item);
return item;
}
答案 0 :(得分:0)
由于@sajid已经说Canvas是一个选项,另一个是CustomItem,以防你想要将某些特定文本与图像相关联。但是在一般情况下,无法在Image周围进行文本流动。有关ImageItem in the form and layouts
的详细信息,请查看此文章