switchMode();
break;
case KEY_PRESSED:
String info = infoText.getText();
if (activity instanceof KeyPressedVideoActivity) {
KeyPressedVideoActivity key = (KeyPressedVideoActivity) activity;
if (info == null)
info = "";
infoText.setText(info + key.typedChar);
}
break;