当前位置:网站首页>notification是显示在手机状态栏的通知
notification是显示在手机状态栏的通知
2022-07-07 15:40:00 【XLMN】
notification是显示在手机状态栏的通知,手机状态栏位于手机最上方,一般显示手机当前网络状态,电池状态,实际等,notification所代表的是一种具有全局效果的通知
package com.example.check;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.os.Build;
public class MainActivity extends Activity {
static final int NOTIFICATION_ID = 0x123;
private NotificationManager nm;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.notification);
//获取系统的NotificationManager服务
nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
}
//为发送通知的按钮点击事件定义处理方法
public void send(View source) {
//创建一个启动其他activity的intent
Intent it = new Intent(MainActivity.this, OtherActivity.class);
PendingIntent pi = PendingIntent.getActivity(MainActivity.this, 0, it, 0);
Notification nf = new Notification.Builder(this)
//设置打开改通知,该通知自动消失
.setAutoCancel(true)
//设置显示在状态栏的通知提示信息
.setTicker("您有新的消息")
//设置通知的图标
.setSmallIcon(R.drawable.mia5)
//设置通知内容标题
.setContentTitle("一条新通知")
//设置通知内容
.setContentText("恭喜您,您被黄山学院,汉语言文学专业录取了")
//设置使用系统默认的声音,默认的led灯
.setDefaults(Notification.DEFAULT_SOUND)
//设置通知的自定义声音 .setSound(Uri.parse("android.resource://org.crazyit.ui/"+R.raw.msg))
// .setWhen(System.currentTimeMillis())
//设置通知将要启动程序的intent
.setContentIntent(pi)
.build();
//发送通知
nm.notify(NOTIFICATION_ID, nf);
}
//为删除通知的按钮的点击事件定义事件处理方法
public void del(View V) {
//取消通知
nm.cancel(NOTIFICATION_ID);
}
}
package com.example.check;
import android.app.Activity;
import android.os.Bundle;
public class OtherActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_other);
}
}
边栏推荐
- [Seaborn] implementation of combined charts and multi subgraphs
- Lex & yacc of Pisa proxy SQL parsing
- 责任链模式 - Unity
- 第3章业务功能开发(用户访问项目)
- The server is completely broken and cannot be repaired. How to use backup to restore it into a virtual machine without damage?
- 第二十四届中国科协湖南组委会调研课题组一行莅临麒麟信安调研考察
- 【可信计算】第十次课:TPM密码资源管理(二)
- 到底有多二(Lua)
- How to implement safety practice in software development stage
- 【TPM2.0原理及应用指南】 1-3章
猜你喜欢
随机推荐
What is cloud computing?
Sator推出Web3遊戲“Satorspace” ,並上線Huobi
Solidity 开发环境搭建
《世界粮食安全和营养状况》报告发布:2021年全球饥饿人口增至8.28亿
本周小贴士#141:注意隐式转换到bool
【可信计算】第十二次课:TPM授权与会话
MySQL implements the query of merging two fields into one field
国内首创!Todesk将RTC技术融入远程桌面,画质更清晰操作更流畅
【网络攻防原理与技术】第6章:特洛伊木马
科普达人丨一文弄懂什么是云计算?
L1-025 正整数A+B(Lua)
How to choose the appropriate automated testing tools?
LeetCode1051(C#)
VSCode关于C语言的3个配置文件
Reflections on "product managers must read: five classic innovative thinking models"
【网络攻防原理与技术】第4章:网络扫描技术
【TPM2.0原理及应用指南】 16、17、18章
[source code interpretation] | source code interpretation of livelistenerbus
第二十四届中国科协湖南组委会调研课题组一行莅临麒麟信安调研考察
MySQL usage notes 1