2017-09-16 15 views
3

これは以下のコードです。これは、通知チャンネルを作成することを念頭に、Android Oで通知を作成することはできません。チャンネルを作成しても通知がAndroid Oに表示されない

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(R.string.mps) : getString(R.string.mph); 

    String temperature = getString(R.string.temperature , weather.getMain().getTemp() , temperatureScale); 
    String city = getString(R.string.city , weather.getName() + ", " + weather.getSys().getCountry()); 
    String wind = getString(R.string.wind_ , weather.getWind().getSpeed(), speedScale); 
    String humidity = getString(R.string.humidity , weather.getMain().getHumidity()); 
    String pressure = getString(R.string.pressure, weather.getMain().getPressure()); 

    String data = city + "\n" + temperature + "\n" + wind + "\n" + humidity + "\n" + pressure; 

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 
     String id = "w01", name = getString(R.string.weather_notification_title); 
     int importance = NotificationManager.IMPORTANCE_DEFAULT; 
     String desc = getString(R.string.weather_notification_description); 

     NotificationChannel channel = new NotificationChannel(id, name, importance); 
     channel.setDescription(desc); 
     notificationManager.createNotificationChannel(channel); 
    } 
    Notification.Builder builder = new Notification.Builder(this); 

    builder.setAutoCancel(false); 
    builder.setContentTitle("Weather Notification"); 
    builder.setContentText(Math.round(weather.getMain().getTemp()) + temperatureScale + " at " + weather.getName()); 
    builder.setStyle(new Notification.BigTextStyle().bigText(data)); 
    builder.setSmallIcon(R.drawable.ic_notification_icon); 
    builder.setContentIntent(pendingIntent); 
    if (Build.VERSION.SDK_INT >= 24) 
     builder.setColor(Color.parseColor("#ff0000")); 
    Notification notification = builder.build(); 
    notificationManager.notify(0 , notification); 
} 

私はAndroidのO上の通知を作成するために必要なすべての手順に従っていると考えている - このマネージャに通知を構築することで、その後、通知マネージャを使用して通知チャネルを作成します。私はどこが間違っているのか分かりません。

EDIT 1:メイドweatherNotificationで次のように変更()メソッド、まだ動作しません:

private void weatherNotification(WeatherInfo weather) { 

    .... 

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 
     String id = "w01", name = getString(R.string.weather_notification_title); 
     int importance = NotificationManager.IMPORTANCE_DEFAULT; 
     String desc = getString(R.string.weather_notification_description); 

     NotificationChannel channel = new NotificationChannel(id, name, importance); 
     channel.setDescription(desc); 
     notificationManager.createNotificationChannel(channel); 
     builder = new Notification.Builder(this , id); 
    } 
    builder = new Notification.Builder(this); 
    builder.setAutoCancel(false); 
    builder.setContentTitle("Weather Notification"); 
    builder.setContentText(Math.round(weather.getMain().getTemp()) + temperatureScale + " at " + weather.getName()); 
    builder.setStyle(new Notification.BigTextStyle().bigText(data)); 
    builder.setSmallIcon(R.drawable.ic_notification_icon); 
    builder.setContentIntent(pendingIntent); 
    if (Build.VERSION.SDK_INT >= 24) 
     builder.setColor(Color.parseColor("#ff0000")); 
    Notification notification = builder.build(); 
    notificationManager.notify(0 , notification); 
    .... 
} 

EDIT 2:編集1コードから、私はビルダーが再び再生されたことが分かりました。だから私は、再び、次の変更を加えた:

private void weatherNotification(WeatherInfo weather) { 
    .... 
    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 
     String id = "w01", name = getString(R.string.weather_notification_title); 
     int importance = NotificationManager.IMPORTANCE_DEFAULT; 
     String desc = getString(R.string.weather_notification_description); 

     NotificationChannel channel = new NotificationChannel(id, name, importance); 
     channel.setDescription(desc); 
     notificationManager.createNotificationChannel(channel); 
     builder = new Notification.Builder(this , id); 
    } 
    else 
     builder = new Notification.Builder(this); 
    .... 
} 

答えて

3
あなたは、この行に廃止の警告を取得する必要があり

Notification.Builder builder = new Notification.Builder(this, id); 
:ある

Notification.Builder builder = new Notification.Builder(this); 

は新しいコンストラクタは、あなたのチャンネルIDを要するため、

(ただし、idがまだ利用できるように、コードを少し修正する必要があります)

引用符the JavaDocs for the constructor that you are using right now: "すべての通知済み通知でNotificationChannel Idを指定する必要があります。"そのまま、Notificationを呼び出すときにそのチャネルを使用していません。 AFAIKは、あなたのNotificationが表示されないようにします。

+0

ご確認くださいEDIT 1 – Sparker0i

+0

EDIT 2、うまくいきました。 – Sparker0i

関連する問題