带占位符的Codenameone FontImage

时间:2016-03-29 14:24:59

标签: netbeans codenameone

我想生成带有占位符的字体图像图标并将其设置为标签。有可能吗?。

2 个答案:

答案 0 :(得分:1)

如果我理解你想要什么,我认为你必须使用FontImage来生成你的图像并应用一个遮罩来使它成为圆形。
您不能将图像设置为标签的占位符,但可以在标签旁边添加图像(向上,向下,向左或向右)

Image img = FontImage.createFixed(...);
Label lbl = new Label("Some Text Here...",img);
lbl.setTextPosition(Component.[TOP/BOTTOM/LEFT/RIGHT]);

希望我回答你的问题

答案 1 :(得分:0)

您是指URLImage或其他东西的占位符吗?

假设您的意思是什么,您可以使用API​​ toEncodedImageFontImage转换为可用作占位符的图片。