Ejemplo n.º 1
0
 /** notify the platform we are coming back from a pause */
 public static void onResume(final Activity activity) {
   if (callback != null) {
     prj.chameleon.channelapi.ChannelInterface.onResume(
         activity,
         new IDispatcherCb() {
           @Override
           public void onFinished(int retCode, JSONObject data) {
             callback.onResumeFinished(retCode);
           }
         });
   }
 }