本文整理匯總了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);
}