Well if I unterstand you correctly, you just want to pass some values from one Screen to another? An easy way to do this is to hand them over in the constructor of your second screen. Your constructor would look like this:
Code:
public SecondScreen(int value1, int value2 .... ) {
// some stuff here
}
and to push the screen:
Code:
UiApplication.getUiApplication().pushScreen(new SecondScreen(choice1.getSelectedValue(), choice2.getSelectedValue() ..... ));