當前位置: 首頁>>代碼示例>>Java>>正文


Java NotificationManager.deleteNotificationChannel方法代碼示例

本文整理匯總了Java中android.app.NotificationManager.deleteNotificationChannel方法的典型用法代碼示例。如果您正苦於以下問題:Java NotificationManager.deleteNotificationChannel方法的具體用法?Java NotificationManager.deleteNotificationChannel怎麽用?Java NotificationManager.deleteNotificationChannel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.app.NotificationManager的用法示例。


在下文中一共展示了NotificationManager.deleteNotificationChannel方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testCreateChannel_overridesPrevious

import android.app.NotificationManager; //導入方法依賴的package包/類
@Test
@SdkSuppress(minSdkVersion = O)
public void testCreateChannel_overridesPrevious(){
    NotificationManager manager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
    manager.deleteNotificationChannel("ems_me_default");
    assertNull(manager.getNotificationChannel("ems_me_default"));
    MessagingServiceUtils.createDefaultChannel(context, enabledOreoConfig);
    NotificationChannel channel = manager.getNotificationChannel("ems_me_default");
    assertNotNull(channel);

    OreoConfig updatedConfig = new OreoConfig(true, "updatedName", "updatedDescription");
    MessagingServiceUtils.createDefaultChannel(context, updatedConfig);

    NotificationChannel updatedChannel = manager.getNotificationChannel("ems_me_default");
    assertEquals(updatedConfig.getDefaultChannelName(), updatedChannel.getName());
    assertEquals(updatedConfig.getDefaultChannelDescription(), updatedChannel.getDescription());
}
 
開發者ID:emartech,項目名稱:android-mobile-engage-sdk,代碼行數:18,代碼來源:MessagingServiceUtilsTest.java

示例2: deleteNotificationChannel

import android.app.NotificationManager; //導入方法依賴的package包/類
/**
 * Delete push notification channel.
 *
 * @param context The application context.
 * @param channelId The id of the channel.
 */
private static void deleteNotificationChannel(Context context, String channelId) {
  if (context == null) {
    return;
  }
  if (BuildUtil.isNotificationChannelSupported(context)) {
    try {
      NotificationManager notificationManager =
          (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
      if (notificationManager == null) {
        Log.e("Notification manager is null");
        return;
      }

      notificationManager.deleteNotificationChannel(channelId);
    } catch (Throwable t) {
      Util.handleException(t);
    }
  }
}
 
開發者ID:Leanplum,項目名稱:Leanplum-Android-SDK,代碼行數:26,代碼來源:LeanplumNotificationChannel.java

示例3: testCreateChannel

import android.app.NotificationManager; //導入方法依賴的package包/類
@Test
@SdkSuppress(minSdkVersion = O)
public void testCreateChannel(){
    NotificationManager manager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
    manager.deleteNotificationChannel("ems_me_default");
    assertNull(manager.getNotificationChannel("ems_me_default"));

    MessagingServiceUtils.createDefaultChannel(context, enabledOreoConfig);

    NotificationChannel channel = manager.getNotificationChannel("ems_me_default");
    assertNotNull(channel);
    assertEquals(NotificationManager.IMPORTANCE_DEFAULT, channel.getImportance());
    assertEquals(enabledOreoConfig.getDefaultChannelName(), channel.getName());
    assertEquals(enabledOreoConfig.getDefaultChannelDescription(), channel.getDescription());
}
 
開發者ID:emartech,項目名稱:android-mobile-engage-sdk,代碼行數:16,代碼來源:MessagingServiceUtilsTest.java

示例4: createChannel

import android.app.NotificationManager; //導入方法依賴的package包/類
@RequiresApi(api = Build.VERSION_CODES.O)
public static void createChannel(@NonNull Context context) {
    Precondition.checkNotNull(context);

    final NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME,
            NotificationManager.IMPORTANCE_DEFAULT);
    channel.setLockscreenVisibility(NotificationCompat.VISIBILITY_PUBLIC);

    final NotificationManager manager = getManager(context);
    manager.deleteNotificationChannel(CHANNEL_ID);
    manager.createNotificationChannel(channel);
}
 
開發者ID:huazhouwang,項目名稱:Synapse,代碼行數:13,代碼來源:ChannelCreator.java


注:本文中的android.app.NotificationManager.deleteNotificationChannel方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。