Notification not showing up in Android O despite creating a channel
问题 This is my code given below. This is unable to create any notifications on Android O, inspite of creating the Notification Channel. private void weatherNotification(WeatherInfo weather) { Intent intent = new Intent(this, WeatherActivity.class); PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0); String temperatureScale = prefs.getUnits().equals("metric") ? getString(R.string.c) : getString(R.string.f); String speedScale = prefs.getUnits().equals("metric") ? getString