當前位置: 首頁>>代碼示例>>Java>>正文


Java Image.setHeight方法代碼示例

本文整理匯總了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);
  }
}
 
開發者ID:mit-cml,項目名稱:appinventor-extensions,代碼行數:19,代碼來源:SimpleComponentDescriptor.java

示例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;
}
 
開發者ID:lsst,項目名稱:firefly,代碼行數:23,代碼來源:LinkButtonFactory.java

示例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;
}
 
開發者ID:ivan-zapreev,項目名稱:x-cure-chat,代碼行數:14,代碼來源:ViewStaticImageDialogUI.java

示例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());
}
 
開發者ID:billy1380,項目名稱:blogwt,代碼行數:11,代碼來源:CommentPropertyPart.java


注:本文中的com.google.gwt.user.client.ui.Image.setHeight方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。