本文整理汇总了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());
}
示例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);
}
}
}
示例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());
}
示例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);
}