classでは、 class whichもa which extends MainScreen
呼び出したいと思います。b
extends MainScreen
b.this
表示されている関数エラーに渡すとNo enclosing instance of the type b is accessible in
classでは、 class whichもa which extends MainScreen
呼び出したいと思います。b
extends MainScreen
b.this
表示されている関数エラーに渡すとNo enclosing instance of the type b is accessible in
このコードを使用できます
UiApplication.getUiApplication().invokeAndWait(new Runnable()
{
public void run()
{
UiApplication.getUiApplication().pushScreen(new NewScreen());
}
});
こんにちは、これはとても簡単です 簡単な方法を教えます
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 を使用できます