欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

kotlin实现通知栏提醒功能示例代码

程序员文章站 2022-11-23 11:53:36
一、概述 2019年英雄联盟lpl赛区赛季赛打得火热,作为一个rng粉丝,想通过app实现rng赛程提醒,于是就有了这次技术实践。我在网上找了很久,几乎没找到使用kotl...

一、概述

2019年英雄联盟lpl赛区赛季赛打得火热,作为一个rng粉丝,想通过app实现rng赛程提醒,于是就有了这次技术实践。我在网上找了很久,几乎没找到使用kotlin实现通知栏提醒的合适的文章,于是就到安卓官网看文档,一边翻译一边研究,最终实现了一个简单的通知栏提醒。又研究了定时任务,但没有成功,还望看到的大佬给个锦囊。

二、环境

kotlin版本:1.3.31

android studio版本:3.4.1

在华为手机android 9 api28 环境下测试通过

三、实现

1、创建一个 empty activity 项目后,编辑 activity_main.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<linearlayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:orientation="vertical"
 xmlns:android="http://schemas.android.com/apk/res/android">
 <button
  android:onclick="shownotification"
  android:text="显示通知"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>
</linearlayout>

2、在类  mainactivity 创建 shownotification 方法

fun shownotification(view: view)
{
 // channel_id:通道id,可在类 mainactivity 外自定义。如:val channel_id = 'msg_1'
 val builder = notificationcompat.builder(this, channel_id)
  .setsmallicon(r.mipmap.ic_launcher)
  .setcontenttitle("rng赛程提醒")
  .setcontenttext("今天晚上19:00,rng对阵ig")
  // 通知优先级,可以设置为int型,范围-2至2
  .setpriority(notificationcompat.priority_max )
 // 显示通知
 with(notificationmanagercompat.from(this)) {
  notify(1, builder.build())
 }
}

3、为了兼容android 8.0及更高版本,传递通知之前,必须在系统中注册应用程序的通知通道。创建好后在 oncreate 函数内调用

private fun createnotificationchannel()
{
 if (build.version.sdk_int >= build.version_codes.o) {
  val name = getstring(r.string.channel_name)
  val descriptiontext = getstring(r.string.channel_description)
  // 提醒式通知(横幅显示),不过大部分需要手动授权
  val importance = notificationmanager.importance_high
  val channel = notificationchannel(channel_id, name, importance).apply {description = descriptiontext}
  // 注册通道(频道)
  val notificationmanager: notificationmanager = getsystemservice(context.notification_service) as notificationmanager
  notificationmanager.createnotificationchannel(channel)
 }
}

四、总结

对于报错部分,可以使用 alt+enter 组合键完成错误更正。

详细的通知使用,请转到官网研究。…

初次发文,若有不足的地方,还请指正。成品截图

kotlin实现通知栏提醒功能示例代码

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。