NotificationUtils.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * Copyright (C) 2015 ownCloud Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2,
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. package com.owncloud.android.ui.notifications;
  20. import android.app.NotificationManager;
  21. import android.content.Context;
  22. import android.os.Handler;
  23. import android.os.HandlerThread;
  24. import android.os.Process;
  25. import android.support.v4.app.NotificationCompat;
  26. import com.owncloud.android.utils.ThemeUtils;
  27. import java.util.Random;
  28. import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
  29. public class NotificationUtils {
  30. public static final String NOTIFICATION_CHANNEL_DOWNLOAD = "NOTIFICATION_CHANNEL_DOWNLOAD";
  31. public static final String NOTIFICATION_CHANNEL_UPLOAD = "NOTIFICATION_CHANNEL_UPLOAD";
  32. public static final String NOTIFICATION_CHANNEL_MEDIA = "NOTIFICATION_CHANNEL_MEDIA";
  33. public static final String NOTIFICATION_CHANNEL_FILE_SYNC = "NOTIFICATION_CHANNEL_FILE_SYNC";
  34. /**
  35. * Factory method for {@link android.support.v4.app.NotificationCompat.Builder} instances.
  36. *
  37. * Not strictly needed from the moment when the minimum API level supported by the app
  38. * was raised to 14 (Android 4.0).
  39. *
  40. * Formerly, returned a customized implementation of {@link android.support.v4.app.NotificationCompat.Builder}
  41. * for Android API levels >= 8 and < 14.
  42. *
  43. * Kept in place for the extra abstraction level; notifications in the app need a review, and they
  44. * change a lot in different Android versions.
  45. *
  46. * @param context Context that will use the builder to create notifications
  47. * @return An instance of the regular {@link NotificationCompat.Builder}.
  48. */
  49. public static NotificationCompat.Builder newNotificationBuilder(Context context) {
  50. return new NotificationCompat.Builder(context).
  51. setColor(ThemeUtils.primaryColor());
  52. }
  53. @SuppressFBWarnings("DMI")
  54. public static void cancelWithDelay(
  55. final NotificationManager notificationManager,
  56. final int notificationId,
  57. long delayInMillis) {
  58. HandlerThread thread = new HandlerThread(
  59. "NotificationDelayerThread_" + (new Random(System.currentTimeMillis())).nextInt(),
  60. Process.THREAD_PRIORITY_BACKGROUND);
  61. thread.start();
  62. Handler handler = new Handler(thread.getLooper());
  63. handler.postDelayed(new Runnable() {
  64. public void run() {
  65. notificationManager.cancel(notificationId);
  66. ((HandlerThread)Thread.currentThread()).getLooper().quit();
  67. }
  68. }, delayInMillis);
  69. }
  70. }