1
I am developing an application with java through a tool called Totalcross and I need to call another screen/actividy but I do not know what code to do this.
In android would be the equivalent of this:
public void ChamaRelatorios(View view){
Intent intent = new Intent(this, Relatorios.class);
startActivity(intent);
}
Have you ever tried to take a look at documentation?
– StatelessDev