Advertisement
minafaw3

GCMIntentService

Oct 20th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.33 KB | None | 0 0
  1. //package com.imaadv.leaynik.Activities;
  2. //
  3. //import static leaynik.co.com.CommonUtilities.SENDER_ID;
  4. //import static leaynik.co.com.CommonUtilities.displayMessage;
  5. //
  6. //import android.app.Notification;
  7. //import android.app.NotificationManager;
  8. //import android.app.PendingIntent;
  9. //import android.content.Context;
  10. //import android.content.Intent;
  11. //import android.util.Log;
  12. //
  13. //import com.google.android.gcm.GCMBaseIntentService;
  14. //import com.imaadv.leaynik.R;
  15. //import com.imaadv.leaynik.api.API;
  16. //
  17. //public class GCMIntentService extends GCMBaseIntentService {
  18. //
  19. // private static final String TAG = "GCMIntentService";
  20. //
  21. // public GCMIntentService() {
  22. // super(SENDER_ID);
  23. // }
  24. //
  25. // /**
  26. // * Method called on device registered
  27. // **/
  28. // @Override
  29. // protected void onRegistered(Context context, String registrationId) {
  30. // Log.i(TAG, "Device registered: regId = " + registrationId);
  31. // displayMessage(context, "Your device registred with GCM");
  32. // // Log.d("NAME", SignInUp.user.username);
  33. // String regID = registrationId;
  34. // API api = new API(this);
  35. // api.setSetting("regid", regID);
  36. // ServerUtilities.register(context);
  37. // }
  38. //
  39. // /**
  40. // * Method called on device un registred
  41. // * */
  42. // @Override
  43. // protected void onUnregistered(Context context, String registrationId) {
  44. // Log.i(TAG, "Device unregistered");
  45. // displayMessage(context, getString(R.string.gcm_unregistered));
  46. // ServerUtilities.unregister(context, registrationId);
  47. // }
  48. //
  49. // /**
  50. // * Method called on Receiving a new message
  51. // * */
  52. // @Override
  53. // protected void onMessage(Context context, Intent intent) {
  54. // Log.i(TAG, "Received message");
  55. // String message = intent.getExtras().getString("not");
  56. //
  57. // String item = intent.getExtras().getString("post");
  58. // displayMessage(context, message);
  59. // // notifies user
  60. // generateNotification(context, message, item);
  61. // }
  62. //
  63. // /**
  64. // * Method called on receiving a deleted message
  65. // * */
  66. // @Override
  67. // protected void onDeletedMessages(Context context, int total) {
  68. // Log.i(TAG, "Received deleted messages notification");
  69. // String message = getString(R.string.gcm_deleted, total);
  70. // displayMessage(context, message);
  71. // // notifies user
  72. // generateNotification(context, message, "");
  73. // }
  74. //
  75. // /**
  76. // * Method called on Error
  77. // * */
  78. // @Override
  79. // public void onError(Context context, String errorId) {
  80. // Log.i(TAG, "Received error: " + errorId);
  81. // displayMessage(context, getString(R.string.gcm_error, errorId));
  82. // }
  83. //
  84. // @Override
  85. // protected boolean onRecoverableError(Context context, String errorId) {
  86. // // log message
  87. // Log.i(TAG, "Received recoverable error: " + errorId);
  88. // displayMessage(context,
  89. // getString(R.string.gcm_recoverable_error, errorId));
  90. // return super.onRecoverableError(context, errorId);
  91. // }
  92. //
  93. // /**
  94. // * Issues a notification to inform the user that server has sent a message.
  95. // */
  96. // private static void generateNotification(Context context, String message,
  97. // String item) {
  98. // int icon = R.drawable.icon;
  99. // long when = System.currentTimeMillis();
  100. // NotificationManager notificationManager = (NotificationManager) context
  101. // .getSystemService(Context.NOTIFICATION_SERVICE);
  102. // Notification notification = new Notification(icon, message, when);
  103. //
  104. // String title = context.getString(R.string.app_name);
  105. //
  106. // Intent notificationIntent = new Intent(context,
  107. // ViewAnswers.class);
  108. // notificationIntent.putExtra("notify", message);
  109. // notificationIntent.putExtra("post_json", item);
  110. //
  111. // // set intent so it does not start a new activity
  112. // notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
  113. // | Intent.FLAG_ACTIVITY_SINGLE_TOP);
  114. // PendingIntent intent = PendingIntent.getActivity(context, 0,
  115. // notificationIntent, 0);
  116. // notification.setLatestEventInfo(context, title, message, intent);
  117. // notification.flags |= Notification.FLAG_AUTO_CANCEL;
  118. //
  119. // // Play default notification sound
  120. // notification.defaults |= Notification.DEFAULT_SOUND;
  121. //
  122. // // notification.sound = Uri.parse("android.resource://" +
  123. // // context.getPackageName() + "your_sound_file_name.mp3");
  124. //
  125. // // Vibrate if vibrate is enabled
  126. // notification.defaults |= Notification.DEFAULT_VIBRATE;
  127. // notificationManager.notify(0, notification);
  128. //
  129. // }
  130. //
  131. //}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement