2011-05-27 27 views

回答

1

你可以做幾件事情。你可以稱之爲getDelegate().setBackground(BackgroundFactory.createSolidBackground(Color.BLACK))或覆蓋屏幕的paint方法來

protected void paint(Graphics graphics) { 
    int oldColor = graphics.getColor(); 
    graphics.setColor(Color.BLACK); 
    graphics.clear(); 
    graphics.setColor(oldColor); 
    super.paint(graphics); 
} 
2

在您使用

public class SplashScreen extends MainScreen { 

     public SplashScreen(){ 
      getMainManager().setBackground(
         BackgroundFactory.createSolidBackground(0x00000000); 
       ); 
     } 
} 
的閃屏