package org.hoydaa.gwtimage.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.Image;
import com.google.gwt.user.client.ui.RootPanel;
public class GWTImage implements EntryPoint {
public void onModuleLoad() {
Image image = new Image("ajax-loader.gif");
RootPanel.get().add(image);
}
}
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.Image;
import com.google.gwt.user.client.ui.RootPanel;
public class GWTImage implements EntryPoint {
public void onModuleLoad() {
Image image = new Image("ajax-loader.gif");
RootPanel.get().add(image);
}
}
2 comments:
My gif doesn't do any animation. Are you sure gwt supports animated gifs?
Should be new Image(GWT.getModuleBaseURL() + "ajax-loader.gif")
Post a Comment