通知与服务——消息通知——通知推送Notification

手机通知栏存放的是App主动推给用户的提醒消息,每条消息包括消息图标、消息标题、消息内容等,这些消息元素由通知建造器Notification.Builder设定。

常用方法如下:

setSmallIcon:设置应用名称左边的小图标。setLargeIcon:设置通知栏右边的大图标。setContentTitle:设置通知栏的标题文本。setContentText:设置通知栏的内容文本。setSubText:设置通知栏的附加文本,它位于应用名称右边。setProgress:设置进度条并显示当前进度。setUsesChronometer:设置是否显示计时器setContentIntent:设置通知内容的延迟意图,点击通知时触发该意图。build:构建通知。

获得Notification消息对象之后,还要由通知管理器NotificationManager推送消息。

通知管理器的常用方法如下。

notify:把指定消息推送到通知栏。cancel:取消指定的消息通知。cancelAll:取消所有的消息通知。createNotificationChannel:创建指定的通知渠道。getNotificationChannel:获取指定编号的通知渠道。

==============================================================================================

布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:padding="5dp" ><LinearLayoutandroid:layout_width="match_parent"android:layout_height="50dp"android:orientation="horizontal"><TextViewandroid:layout_width="wrap_content"android:layout_height="match_parent"android:gravity="center"android:text="消息标题:"android:textColor="@color/black"android:textSize="17sp" /><EditTextandroid:id="@+id/et_title"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:layout_margin="5dp"android:background="@drawable/editext_selector"android:hint="请填写消息标题"android:textColor="@color/black"android:textSize="17sp" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="70dp"android:orientation="horizontal"><TextViewandroid:layout_width="wrap_content"android:layout_height="match_parent"android:gravity="center"android:text="消息内容:"android:textColor="@color/black"android:textSize="17sp" /><EditTextandroid:id="@+id/et_message"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:gravity="top"android:layout_margin="5dp"android:background="@drawable/editext_selector"android:hint="请填写消息内容"android:textColor="@color/black"android:textSize="17sp" /></LinearLayout><Buttonandroid:id="@+id/btn_send_simple"android:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="center"android:text="发送简单消息"android:textColor="@color/black"android:textSize="17sp" /></LinearLayout>

 

 

代码;

package com.example.myapplication;import androidx.appcompat.app.AppCompatActivity;import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.os.Build;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;public class MainActivity3 extends AppCompatActivity implements View.OnClickListener
{private EditText et_title;private EditText et_message;@Overrideprotected void onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.activity_main3);et_title = findViewById(R.id.et_title);et_message = findViewById(R.id.et_message);findViewById(R.id.btn_send_simple).setOnClickListener(this);}@Overridepublic void onClick(View v){if (v.getId() == R.id.btn_send_simple){ViewUtil.hideOneInputMethod(this, et_message); // 隐藏输入法软键盘if (TextUtils.isEmpty(et_title.getText())){Toast.makeText(this, "请填写消息标题", Toast.LENGTH_SHORT).show();return;}if (TextUtils.isEmpty(et_message.getText())){Toast.makeText(this, "请填写消息内容", Toast.LENGTH_SHORT).show();return;}String title = et_title.getText().toString();String message = et_message.getText().toString();sendSimpleNotify(title, message); // 发送简单的通知消息}}// 发送简单的通知消息(包括消息标题和消息内容)private void sendSimpleNotify(String title, String message){// 发送消息之前要先创建通知渠道,创建代码见MainApplication.java// 创建一个跳转到活动页面的意图Intent clickIntent = new Intent(this, MainActivity2.class);// 创建一个用于页面跳转的延迟意图PendingIntent contentIntent = PendingIntent.getActivity(this, R.string.app_name, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);// 创建一个通知消息的建造器Notification.Builder builder = new Notification.Builder(this);if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){// Android 8.0开始必须给每个通知分配对应的渠道builder = new Notification.Builder(this, getString(R.string.app_name));}builder.setContentIntent(contentIntent) // 设置内容的点击意图.setAutoCancel(true) // 点击通知栏后是否自动清除该通知.setSmallIcon(R.mipmap.ic_launcher) // 设置应用名称左边的小图标.setSubText("这里是副本") // 设置通知栏里面的附加说明文本.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_app))  // 设置通知栏右边的大图标.setContentTitle(title) // 设置通知栏里面的标题文本.setContentText(message); // 设置通知栏里面的内容文本Notification notify = builder.build(); // 根据通知建造器构建一个通知对象// 从系统服务中获取通知管理器NotificationManager notifyMgr = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);// 使用通知管理器推送通知,然后在手机的通知栏就会看到该消息notifyMgr.notify(R.string.app_name, notify);}}

 

============================================================================================================

布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:padding="5dp" ><LinearLayoutandroid:layout_width="match_parent"android:layout_height="50dp"android:orientation="horizontal"><TextViewandroid:layout_width="wrap_content"android:layout_height="match_parent"android:gravity="center"android:text="消息标题:"android:textColor="@color/black"android:textSize="17sp" /><EditTextandroid:id="@+id/et_title"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:layout_margin="5dp"android:background="@drawable/editext_selector"android:hint="请填写消息标题"android:textColor="@color/black"android:textSize="17sp" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="70dp"android:orientation="horizontal"><TextViewandroid:layout_width="wrap_content"android:layout_height="match_parent"android:gravity="center"android:text="消息内容:"android:textColor="@color/black"android:textSize="17sp" /><EditTextandroid:id="@+id/et_message"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:gravity="top"android:layout_margin="5dp"android:background="@drawable/editext_selector"android:hint="请填写消息内容"android:textColor="@color/black"android:textSize="17sp" /></LinearLayout><Buttonandroid:id="@+id/btn_send_counter"android:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="center"android:text="发送计时消息"android:textColor="@color/black"android:textSize="17sp" /></LinearLayout>

 

 

代码:

package com.example.myapplication;import androidx.appcompat.app.AppCompatActivity;import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.os.Build;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;public class MainActivity4 extends AppCompatActivity implements View.OnClickListener
{private EditText et_title;private EditText et_message;@Overrideprotected void onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.activity_main4);et_title = findViewById(R.id.et_title);et_message = findViewById(R.id.et_message);findViewById(R.id.btn_send_counter).setOnClickListener(this);}@Overridepublic void onClick(View v){if (v.getId() == R.id.btn_send_counter){ViewUtil.hideOneInputMethod(this, et_message); // 隐藏输入法软键盘if (TextUtils.isEmpty(et_title.getText())){Toast.makeText(this, "请填写消息标题", Toast.LENGTH_SHORT).show();return;}if (TextUtils.isEmpty(et_message.getText())){Toast.makeText(this, "请填写消息内容", Toast.LENGTH_SHORT).show();return;}String title = et_title.getText().toString();String message = et_message.getText().toString();sendCounterNotify(title, message); // 发送计时的通知消息}}// 发送计时的通知消息private void sendCounterNotify(String title, String message){// 发送消息之前要先创建通知渠道,创建代码见MainApplication.java// 创建一个跳转到活动页面的意图Intent cancelIntent = new Intent(this, MainActivity2.class);// 创建一个用于页面跳转的延迟意图PendingIntent deleteIntent = PendingIntent.getActivity(this, R.string.app_name, cancelIntent, PendingIntent.FLAG_UPDATE_CURRENT);// 创建一个通知消息的建造器Notification.Builder builder = new Notification.Builder(this);if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){// Android 8.0开始必须给每个通知分配对应的渠道builder = new Notification.Builder(this, getString(R.string.app_name));}builder.setDeleteIntent(deleteIntent) // 设置内容的清除意图.setSmallIcon(R.mipmap.ic_launcher) // 设置应用名称左边的小图标.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_app)) // 设置通知栏右边的大图标.setProgress(100, 60, false) // 设置进度条及其具体进度.setUsesChronometer(true) // 设置是否显示计时器.setContentTitle(title) // 设置通知栏里面的标题文本.setContentText(message); // 设置通知栏里面的内容文本Notification notify = builder.build(); // 根据通知建造器构建一个通知对象// 从系统服务中获取通知管理器NotificationManager notifyMgr = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);// 使用通知管理器推送通知,然后在手机的通知栏就会看到该消息notifyMgr.notify(R.string.app_name, notify);}}

 

 

===================================================================================================

 

 

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/45394.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Android Notification(通知消息)

Android Notification通知消息 Android Notification(通知消息)样式一、核心文件源码二、主界面页面三、单击通知跳转的Activity四、单击通知跳转的页面五、最终效果 Android Notification(通知消息)样式 ① 为小图标 ② 为App名称 ③ 为标题 ④ 为内容 ⑤ 为大图标 一、核心文…

Android直接回复通知

Android直接回复通知 通知直接回复 Android N/7.0 Android直接回复通知 前言创建通知 创建notification对象添加一个Action添加一个广播接收Action事件添加直接回复输入框把直接回复的内容发送到广播接收器结合Hands Up带来超棒的用户体验 Hands Up直接回复通知不消失的问题总结…

Android 实现微信,QQ的程序前后台切换:back键切换后台;点击通知栏恢复前台。

实现类似微信&#xff0c;QQ的前后台切换&#xff1a;back键切换后台&#xff1b;点击通知栏恢复前台。 1、back键切换后台的实现&#xff1a; 这个实现需要在主activity重写onbackpressed()方法。代码如下&#xff1a; Overridepublic void onBackPressed() {Intent intent…

Python源码学习笔记:Python虚拟机

Python虚拟机 注&#xff1a;本篇是根据教程学习记录的笔记&#xff0c;部分内容与教程是相同的&#xff0c;因为转载需要填链接&#xff0c;但是没有&#xff0c;所以填的原创&#xff0c;如果侵权会直接删除。此外&#xff0c;本篇内容大部分都咨询了ChatGPT&#xff0c;为笔…

Windows PyCharm 2022/2023 使用Centos7 的虚拟环境 venv 实现文件实时同步 代码代码Git自动识别 解决 Samba Cannot Save File 的问题

前期准备 git报错 fatal: unsafe repository 解决方法 因为是远程文件夹&#xff0c;老版本时没这个问题&#xff0c;新版本git或者pycharm有这个限制&#xff0c;不能自动识别更改的代码&#xff0c;报unsafe.directory的问题&#xff0c;直接暴力解决&#xff0c;加* git c…

接口间参数传递的一种解决方案

引言 做过接口自动化测试的同学肯定都熟悉在全链路测试过程中&#xff0c;很多业务场景的完成并非由单一接口实现&#xff0c;而是由很多接口组成的一条链路实现。例如你在淘宝上购物场景。 不同于单接口测试&#xff0c;这种链路型的接口自动化测试&#xff0c;由于接口间有参…

计算机应用设计大赛获奖信息,北京大学第六届“计算机应用设计大赛”圆满落幕...

6月6日下午&#xff0c;北京大学创新创意系列赛事颁奖典礼在英杰交流中心月光厅举行&#xff0c;会上颁发了计算机应用设计大赛、“挑战杯”系列竞赛、数学建模与计算机应用竞赛和“禁毒教育”创意大赛四项赛事的各类奖项。信息科学技术学院2013级本科生王迪作为获奖代表上台领…

魔物学院计算机,测试 | 你属于魔法学校什么学院的?

原标题&#xff1a;测试 | 你属于魔法学校什么学院的&#xff1f; 本Part长年主持&#xff1a;绿茶 本Part今日主人公&#xff1a;心理测试 如果你有机会在霍格沃茨魔法学校读书,依据你的性格,分院帽会把你分到哪个学院呢?你适合哪个学院呢?是高贵的斯莱特林,还是勇敢的格兰芬…

uniapp 微信小程序通过 wx.openCustomerServiceChat对接客服。

直接上解决方案&#xff0c;直接在绑定的方法中调用wx.openCustomerServiceChat 方法即可。 需要注意的几点。 hbuilder x 需升级到 3.4.3 版本以上。使用的&#xff0c;微信开发者工具中是看不到效果的&#xff0c;需要打包后&#xff0c;在微信中扫码查看。&#xff08;体验…

微软丢出王炸:微软发布重磅更新Windows Copilot

在今天凌晨结束的微软 Build 2023 大会上&#xff0c;微软发布了重磅更新Windows Copilot. 微软此前把 GPT-4 接入Office 套件而推出的 Copilot&#xff0c;将全面集成到 Windows 系统。 Windows Copilot 注册直通&#xff1a; https:/forms.office.com/pages/responsepage.asp…

仿QQ聊天程序

仿QQ聊天程序 转载请标明出处&#xff1a;牟尼的专栏 http://blog.csdn.net/u012027907 一、设计内容及要求 1.1综述 A.系统概述 我们要做的就是类似QQ这样的面向企业内部的聊天软件&#xff0c;基本功能和QQ类似。首先&#xff0c;系统分为两大部分&#xff0c;第一部分是…

仿微信语音聊天

如上图&#xff0c;是常见的仿微信的聊天程序&#xff0c;实现的效果如上图所示&#xff0c;由于项目太大&#xff0c;本文只讲录音部分。本项目示例代码&#xff1a;https://github.com/xiangzhihong/weixinAudio 主要用到4个核心类&#xff1a; 自定义录音按钮&#xff08;R…

Android 仿微信实现语音聊天功能

在此感谢鸿洋大神&#xff0c;因为我这是在慕课上看大神的视频做出来的。 代码中我已经添加了很多很多注释&#xff0c;不光是为了大家&#xff0c;也是为了自己能够更加透彻的理解该功能 支持原创&#xff0c;也不算原创了哈哈~ http://blog.csdn.net/lhk147852369/article/…

【Unity人物动画】SALSA With RandomEyes (语音生成嘴型/人物说话) 使用

SALSA使用探索 之前做项目时想实现人物说话的效果&#xff0c;因为我们的语音是AI合成的&#xff0c;有很多片段&#xff0c;如果能根据语音生成嘴部的动画&#xff0c;那将极大便利我们的工作。后面是找到了SALSA的这款插件&#xff0c;并摸索出使用方法。 1 插件介绍 官方网…

仿QQ聊天程序(java)

简易版qq聊天&#xff1a;qq聊天[简易版] (resourcecode.cn) 推荐java最新聊天项目&#xff08;java仿微信聊天&#xff09;: java 简单仿微信聊天(springboot)_Garry1115的博客-CSDN博客_springboot 模拟微信 转载请标明出处&#xff1a;牟尼的专栏 牟尼的博客_CSDN博客-算法…

LaTeX数学公式输入初级入门

LaTeX最强大的功能就是显示美丽的数学公式&#xff0c;下面我们来看这些公式是怎么实现的。 1、数学公式的前后要加上 $ 或 \( 和 \)&#xff0c;比如&#xff1a;$f(x) 3x 7$ 和 \(f(x) 3x 7\) 效果是一样的&#xff1b; 如果用 \[ 和 \]&#xff0c;或者使用 $$ 和 $$&a…

《LaTex》LaTex数学公式简介

LaTex数学公式简介 文章目录 一、引用数学公式的方法二、LaTex数学公式的基本代码1. 符号1.1. 常规的数学符号&#xff1a;直接从键盘输入1.2. 任何1.3. 存在1.4. 属于1.5. 小于等于1.6. 大于等于1.7. 约等于1.8. 更多数学符号 2. 希腊字母2.1. 阿尔法2.2. 贝塔2.3. 伽马2.4. 希…

LaTex数学公式简介

LaTex数学公式简介目录 一、引用数学公式的方法二、LaTex数学公式的基本代码1. 符号1.1. 常规的数学符号&#xff1a;直接从键盘输入1.2 标志符1.3 希腊字母1.4 运算符1.4.1 三角函数1.4.2 极限1.4.3 项数和指数1.4.4 积分1.4.5 矩阵 三、补充四、参考文献 一、引用数学公式的方…

常用数学公式,推导记录

1 组合数计算公式 组合公式的推导由排列公式去掉重复的部分得来。 排列是&#xff0c;从n个不相同元素中取出m个排成一列&#xff08;有序&#xff09;&#xff0c;第一个位置可以有n个选择&#xff0c;第二个位置可以有n-1个选择&#xff08;已经有1个放在前一个位置&#xff…

CMU 开源数学神器,可快速将数学公式转为精美图表!

公众号关注 “GitHubDaily” 设为 “星标”&#xff0c;每天带你逛 GitHub&#xff01; 转自机器之心 在有些人眼里&#xff0c;数学公式就是一堆数字和符号&#xff0c;但在另一些人看来&#xff0c;这些数字和符号是可以动的&#xff0c;而且极富美感。为什么会有这种差距&am…