我想更改寻呼机的按钮图像(第一,最后,下一个,上一个,快进)。我厌倦了使用CSS,但无法实现它。任何帮助或建议,将不胜感激。
我正在使用GWT 2.4.0

最佳答案

您需要扩展SimplePager.Resources界面并提供自己的图像。然后将这些资源的实例传递到SimplePager构造函数中:

public interface MyPagerImages extends SimplePager.Resources
{
    // Here you can @Override all the methods and place @Source annotation to tell
    // SimplePager what image should be loaded as a replacement
    // For example here I am replacing the Fast Forward image.
    @Override
    @Source( "myFastForward.gif" )
    ImageResource simplePagerFastForward()
}


然后在构造SimplePager时:

MyPagerImages myImages = GWT.create(MyPagerImages.class);
SimplePager pager = new SimplePager(SimplePager.TextLocation.CENTER,
  myImages, true, 1000 /* that's the default */, false);

09-29 21:10