我是Smart GWT的初学者。我试图在简单的布局中创建图像。
我要创建的是这样的:
我从下面的简单代码开始:
protected final VLayout content = new VLayout();
protected final HLayout head = new HLayout();
protected final HLayout body = new HLayout();
// head elements
protected final Img imgPhoto = new Img("", 640, 480);
protected final ListGrid datapointGrid = new ListGrid();
protected final ListGrid namedDatapoints = new ListGrid();
public MyViewConstructor()
{
content.addMember(head);
content.addMember(body);
imgPhoto.setWidth(640);
imgPhoto.setHeight(480);
head.addMember(imgPhoto);
imgPhoto.setBackgroundColor("#0055FF");
head.addMember(namedDatapoints);
body.addMember(datapointGrid);
}
该类嵌入在较大的应用程序中,但是据我所知,没有有趣的事情在进行,一切都应正常呈现。
但是,当我在Chrome调试中打开应用程序时,会看到以下信息:
图像非常大。其余内容受其压迫:
如何确保图像应有的大小而不是现在的大小?我是新手,请耐心等待。