Exemple #1
0
 public static boolean setActivityTitle(String title) {
   // Called from SDLMain() thread and can't directly affect the view
   return mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title);
 }
Exemple #2
0
 public static boolean sendMessage(int command, int param) {
   return mSingleton.sendCommand(command, Integer.valueOf(param));
 }
 public static void finishActivity() {
   mSingleton.sendCommand(COMMAND_FINISH, null);
 }