Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个说 5 个图像(图像资源)的列表,我想添加到面板中,而无需<img>在我的ui.xml. 这可能吗?
<img>
ui.xml
@uifield yourpanel panel
您直接将图像添加到该面板。
for (int i = 0; i < images.length; i++){ Image image =new Image(url); ..... ... Panel.add(image); }