本文整理匯總了Java中com.google.gwt.user.client.ui.Image.setHeight方法的典型用法代碼示例。如果您正苦於以下問題:Java Image.setHeight方法的具體用法?Java Image.setHeight怎麽用?Java Image.setHeight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.gwt.user.client.ui.Image
的用法示例。
在下文中一共展示了Image.setHeight方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getImageFromPath
import com.google.gwt.user.client.ui.Image; //導入方法依賴的package包/類
public static Image getImageFromPath(String iconPath, String packageName, long projectId) {
if (!imagesInitialized) {
initBundledImages();
}
if (iconPath.startsWith("aiwebres/") && packageName != null) {
// icon for extension
Image image = new Image(StorageUtil.getFileUrl(projectId,
"assets/external_comps/" + packageName + "/" + iconPath));
image.setWidth("16px");
image.setHeight("16px");
return image;
}
if (bundledImages.containsKey(iconPath)) {
return new Image(bundledImages.get(iconPath));
} else {
return new Image(iconPath);
}
}
示例2: makeLinkIcon
import com.google.gwt.user.client.ui.Image; //導入方法依賴的package包/類
public Widget makeLinkIcon(String iconUrl, String text, String tip, ClickHandler handler) {
HorizontalPanel hp = new HorizontalPanel();
Image image = new Image(iconUrl);
image.setHeight("16px");
makeIntoLinkButton(image);
hp.add(image);
if (!StringUtils.isEmpty(text)) {
Label label = new Label(text);
if (tip != null) {
label.setTitle(tip);
}
label.addClickHandler(handler);
makeIntoLinkButton(label);
hp.add(GwtUtil.getFiller(3, 1));
hp.add(label);
}
if (tip != null) {
image.setTitle(tip);
}
image.addClickHandler(handler);
return hp;
}
示例3: getMediaFileWidget
import com.google.gwt.user.client.ui.Image; //導入方法依賴的package包/類
/**
* Set the current image to the image panel, if the image is
* not created yet, then we create a new one.
*/
@Override
protected Widget getMediaFileWidget( final int index ) {
//Create the image
Image image = new Image( mediaURL == null ? "" : mediaURL );
image.setWidth( MIN_IMAGE_VIEW_WIDTH + "px" );
image.setHeight( MIN_IMAGE_VIEW_HEIGHT + "px" );
image.setStyleName( CommonResourcesContainer.IMAGE_MEDIA_FILE_SHOW_STYLE );
return image;
}
示例4: CommentPropertyPart
import com.google.gwt.user.client.ui.Image; //導入方法依賴的package包/類
public CommentPropertyPart () {
initWidget(uiBinder.createAndBindUi(this));
Image disqus = new Image(Resources.RES.disqusLogo());
disqus.setHeight("20px");
disqus.setWidth("110px");
// get the label
rdoDisqus.getElement().getChild(1).appendChild(disqus.getElement());
}