I'm 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.
Android would be the equivalent of this:
public void ChamaRelatorios(View view){
Intent intent = new Intent(this, Relatorios.class);
startActivity(intent);
}