I can't get the back button to work. This is all done through hand coding.
Full source attached... I have this for the Command:
Command backCommand = new Command("Back") {
public void actionPerformed(ActionEvent ev) {
System.out.println("backCommand Fired");
showBack();
}
};
setBackCommand(backCommand);
When I click the back button on the emulator, it indicates that it fired. However, nothing happens.
In the forums, it seems that showForm should be used instead of show... however, I can't seem to figure out when to call it. In the examples, it's in StateMachineBase.java.