安卓开发——手机通知无法使用
Posted freezing?
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓开发——手机通知无法使用相关的知识,希望对你有一定的参考价值。
android studio开发运用手机多媒体
链接手机设备通知不起作用
学习安卓到通知这个模块,建立项目链接手机后,发现发送通知手机上却接收不到。
原因:安卓版本8.0以上使用通知需要先建立通知通道。
解决方案:
1.构造方法:
private String createNotificationChannel(String channelID, String channelNAME, int level) {
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
NotificationChannel channel = new NotificationChannel(channelID, channelNAME, level);
manager.createNotificationChannel(channel);
return channelID;
} else {
return null;
}
}
2.生成通知:
String channelId = createNotificationChannel("my_channel_ID","my_channel_name",NotificationManager.IMPORTANCE_MAX);
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification notification = new NotificationCompat.Builder(this,channelId)
.setContentTitle("This is content title")
.setContentText("This is content text")
.setWhen(System.currentTimeMillis())
.setSmallIcon(R.mipmap.ic_launcher)
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
.setContentIntent(pi)
.build();
3.效果展示:
首先点击按钮发送通知
然后在下拉栏可以看到收到的通知了
以上是关于安卓开发——手机通知无法使用的主要内容,如果未能解决你的问题,请参考以下文章