Android8.0通知栏适配
String channelId="channel_id";
NotificationManager manager=getSystemService(Context.NOTIFICATION_SERVICE);
if(Build.VERSION.SDK_INT>=BUILD.VERSION_CODES.O){
Charsequence name="channel_name";
String description="channel_description";
int importance=NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel=new NotificationChannel(channelId,name,importance);
channel.setDescription(description);
manager.createNotificationChannel(channel);
}
Intent intent=new Intent(MainActivity.this,No