-1

classでは、 class whichもa which extends MainScreen呼び出したいと思います。bextends MainScreen

b.this表示されている関数エラーに渡すとNo enclosing instance of the type b is accessible in

4

2 に答える 2

0

このコードを使用できます

UiApplication.getUiApplication().invokeAndWait(new Runnable() 
{   
    public void run() 
    {
        UiApplication.getUiApplication().pushScreen(new NewScreen());
    }
});
于 2012-07-12T11:09:19.103 に答える
0

こんにちは、これはとても簡単です 簡単な方法を教えます

2 つのクラスがあるとします。

1)画面1

2)画面2

screen1.java

public class screen1 extends MainScreen
{
   // some lines of code 
   //this is method to going to next screen in side that method 
   UiApplication.getUiApplication().pushScreen(new screen2(screen1.this));
}

screen2.java

public class screen2 extends MainScreen
{
   private Screen1 screen1Object;
   // here take constructer
   public screen2(Screen1 screen1Object)
   {
      this.screen1Object=screen1Object;
   }
}

ここで、その screen1Object を使用できます

于 2012-07-12T08:06:56.470 に答える