Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //package com.imaadv.leaynik.Activities;
- //
- //import static leaynik.co.com.CommonUtilities.SENDER_ID;
- //import static leaynik.co.com.CommonUtilities.displayMessage;
- //
- //import android.app.Notification;
- //import android.app.NotificationManager;
- //import android.app.PendingIntent;
- //import android.content.Context;
- //import android.content.Intent;
- //import android.util.Log;
- //
- //import com.google.android.gcm.GCMBaseIntentService;
- //import com.imaadv.leaynik.R;
- //import com.imaadv.leaynik.api.API;
- //
- //public class GCMIntentService extends GCMBaseIntentService {
- //
- // private static final String TAG = "GCMIntentService";
- //
- // public GCMIntentService() {
- // super(SENDER_ID);
- // }
- //
- // /**
- // * Method called on device registered
- // **/
- // @Override
- // protected void onRegistered(Context context, String registrationId) {
- // Log.i(TAG, "Device registered: regId = " + registrationId);
- // displayMessage(context, "Your device registred with GCM");
- // // Log.d("NAME", SignInUp.user.username);
- // String regID = registrationId;
- // API api = new API(this);
- // api.setSetting("regid", regID);
- // ServerUtilities.register(context);
- // }
- //
- // /**
- // * Method called on device un registred
- // * */
- // @Override
- // protected void onUnregistered(Context context, String registrationId) {
- // Log.i(TAG, "Device unregistered");
- // displayMessage(context, getString(R.string.gcm_unregistered));
- // ServerUtilities.unregister(context, registrationId);
- // }
- //
- // /**
- // * Method called on Receiving a new message
- // * */
- // @Override
- // protected void onMessage(Context context, Intent intent) {
- // Log.i(TAG, "Received message");
- // String message = intent.getExtras().getString("not");
- //
- // String item = intent.getExtras().getString("post");
- // displayMessage(context, message);
- // // notifies user
- // generateNotification(context, message, item);
- // }
- //
- // /**
- // * Method called on receiving a deleted message
- // * */
- // @Override
- // protected void onDeletedMessages(Context context, int total) {
- // Log.i(TAG, "Received deleted messages notification");
- // String message = getString(R.string.gcm_deleted, total);
- // displayMessage(context, message);
- // // notifies user
- // generateNotification(context, message, "");
- // }
- //
- // /**
- // * Method called on Error
- // * */
- // @Override
- // public void onError(Context context, String errorId) {
- // Log.i(TAG, "Received error: " + errorId);
- // displayMessage(context, getString(R.string.gcm_error, errorId));
- // }
- //
- // @Override
- // protected boolean onRecoverableError(Context context, String errorId) {
- // // log message
- // Log.i(TAG, "Received recoverable error: " + errorId);
- // displayMessage(context,
- // getString(R.string.gcm_recoverable_error, errorId));
- // return super.onRecoverableError(context, errorId);
- // }
- //
- // /**
- // * Issues a notification to inform the user that server has sent a message.
- // */
- // private static void generateNotification(Context context, String message,
- // String item) {
- // int icon = R.drawable.icon;
- // long when = System.currentTimeMillis();
- // NotificationManager notificationManager = (NotificationManager) context
- // .getSystemService(Context.NOTIFICATION_SERVICE);
- // Notification notification = new Notification(icon, message, when);
- //
- // String title = context.getString(R.string.app_name);
- //
- // Intent notificationIntent = new Intent(context,
- // ViewAnswers.class);
- // notificationIntent.putExtra("notify", message);
- // notificationIntent.putExtra("post_json", item);
- //
- // // set intent so it does not start a new activity
- // notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
- // | Intent.FLAG_ACTIVITY_SINGLE_TOP);
- // PendingIntent intent = PendingIntent.getActivity(context, 0,
- // notificationIntent, 0);
- // notification.setLatestEventInfo(context, title, message, intent);
- // notification.flags |= Notification.FLAG_AUTO_CANCEL;
- //
- // // Play default notification sound
- // notification.defaults |= Notification.DEFAULT_SOUND;
- //
- // // notification.sound = Uri.parse("android.resource://" +
- // // context.getPackageName() + "your_sound_file_name.mp3");
- //
- // // Vibrate if vibrate is enabled
- // notification.defaults |= Notification.DEFAULT_VIBRATE;
- // notificationManager.notify(0, notification);
- //
- // }
- //
- //}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement