android 通知Notification详解及实例代码

作者:lqh 时间:2023-06-26 12:11:42 

android Notification实例详解

1.使用Builder模式来创建

2.必须要设置一个smallIcon,还可以设置setTicker

3.可以设置 setContentTitle,setContentInfo,setContentText,setWhen

4.可以设置setDefaults(闪屏,声音,震动),通过Notification设置flags(能不能被清除)

5.发送需要获取一个NotificationManager(getSystemService来获取);notify(int id,Notification)

6.清除 manager.cancelAll(清除所有) cancal(int id); 如果需要16一下的api也能访问,需要导入v4包,使用notificationCompat兼容类。

自定义通知

使用RemoteViews来建立一个布局,然后使用setContent()设置;

点击事件使用PendingIntent来完成

下面是一个案例

android 通知Notification详解及实例代码

android 通知Notification详解及实例代码

MainActivity类


public class MainActivity extends Activity {

@Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);

}

public void clearNotification(View v) {
   // 通过代码来清除 NO_CLEAR
   // 清除也需要manager
   NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
   // 只能清除由本应用程序发出去的通知
   manager.cancelAll();
 }

public void sendNotification(View v) {
   // 他是 在v4包中的通知,用于16以下版本发送通知
   // NotificationCompat
   // 通知的创建
   Notification.Builder builder = new Notification.Builder(this);
   // NotificationCompat.Builder builder2 = new NotificationCompat.Builder(
   // this);
   // 显示在通知条上的图标 必须的
   builder.setSmallIcon(R.drawable.ic_launcher);
   // 显示通知条上的文字 不是必须的
   builder.setTicker("您有一条新的消息!!");

// 状态栏中的
   builder.setContentTitle("大标题");
   builder.setContentText("文本");
   builder.setWhen(System.currentTimeMillis());
   builder.setContentInfo("Info");
   builder.setDefaults(Notification.DEFAULT_ALL);
   // 点击事件使用Pending
   Intent intent = new Intent(this, MainActivity.class);
   PendingIntent pi = PendingIntent.getActivity(this, 1, intent,
       PendingIntent.FLAG_UPDATE_CURRENT);
   builder.setContentIntent(pi);
   // 生成对象 16API以上,支持低版本需要使用v4包中的notificationCompat
   Notification notify = builder.build();
   // 设置不能清除
   notify.flags = Notification.FLAG_NO_CLEAR;

// 如何将通知发送出去
   NotificationManager mananger = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
   // 通知的唯一值,如果id重复,表明是更新一条通知,而不是新建
   mananger.notify((int) (Math.random() * 1000), notify);
 }

public void diyNotification(View v) {
   // 展示在通知上面的视图
   RemoteViews views = new RemoteViews(getPackageName(), R.layout.layout);
   Notification notification = new Notification.Builder(this)
       .setSmallIcon(R.drawable.ic_launcher).setTicker("自定义通知 ")
       // 布局
       .setContent(views).build();
   // 使用RemoteViews来设置点击事件
   views.setTextColor(R.id.tv, Color.RED);
   Intent intent = new Intent(this, OneActivity.class);
   // 音乐播放是放在Service
   PendingIntent pi = PendingIntent.getActivity(this, 2, intent,
       PendingIntent.FLAG_UPDATE_CURRENT);
   views.setOnClickPendingIntent(R.id.tv, pi);

Intent intent2 = new Intent(this, MainActivity.class);

PendingIntent pi2 = PendingIntent.getActivity(this, 1, intent2,
       PendingIntent.FLAG_UPDATE_CURRENT);
   views.setOnClickPendingIntent(R.id.iv, pi2);
   // 发送
   NotificationManager notify = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
   notify.notify(1, notification);

}

}

OneActivity类


public class OneActivity extends Activity {

@Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   TextView tv = new TextView(this);
   tv.setText("跳转界面");
   setContentView(tv);
 }
}

activity.main.xml


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="com.example.lesson8_notification.MainActivity" >

<Button
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:onClick="sendNotification"
   android:text="普通的通知" />

<Button
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:onClick="clearNotification"
   android:text="清除所有通知" />

<Button
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:onClick="diyNotification"
   android:text="自定义通知" />

</LinearLayout>

layout.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" >

<TextView
   android:id="@+id/tv"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="TextView" />

<ImageView
   android:id="@+id/iv"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/ic_launcher" />

</LinearLayout>

最后记得注册activity

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

来源:http://blog.csdn.net/dr_abandon/article/details/53121192

标签:android,Notification
0
投稿

猜你喜欢

  • 解决IDEA service层跳转实现类的快捷图标消失问题

    2022-09-03 06:38:00
  • C# 利用PdfSharp生成Pdf文件的示例

    2022-01-18 17:31:30
  • 在SpringBoot中整合使用Netty框架的详细教程

    2023-03-26 23:59:53
  • Kotlin空安全空类型浅谈

    2022-06-18 22:48:49
  • 超全MyBatis动态代理详解(绝对干货)

    2023-11-14 02:28:19
  • Java模拟qq软件的详细过程

    2022-01-27 15:06:19
  • C#实现学生档案查询

    2022-10-10 05:22:07
  • Java用递归方法解决汉诺塔问题详解

    2022-11-23 03:11:40
  • java 实现截取字符串并按字节分别输出实例代码

    2021-08-28 08:10:44
  • Java RPC框架熔断降级机制原理解析

    2023-06-07 06:01:48
  • Android OkHttp代理与路由的彻底理解

    2023-03-17 01:21:51
  • 轻松掌握Java观察者模式

    2023-10-10 22:34:54
  • springboot mybatis里localdatetime序列化问题的解决

    2023-06-25 06:58:18
  • java实现水果超市管理系统

    2022-02-03 12:52:32
  • 谈谈Android的三种网络通信方式

    2023-04-19 17:28:47
  • Android实现手机震动效果

    2022-11-05 12:20:43
  • C#完成word文档打印的方法

    2023-05-29 23:55:36
  • C#泛型方法在lua中表示的一种设计详解

    2022-08-24 20:03:12
  • Android7.0行为变更之适配File Provider的方法

    2021-09-24 08:02:38
  • Flutter开发setState能否在build中直接调用详解

    2022-05-17 14:55:27
  • asp之家 软件编程 m.aspxhome.com