Android编程开发之NotiFication用法详解

作者:sgx425021234 时间:2023-01-19 22:50:11 

本文实例讲述了Android编程开发之NotiFication用法。分享给大家供大家参考,具体如下:

notification就是通知的意思,安卓中指通知栏,一般用在电话,短信,邮件,闹钟铃声,在手机的状态栏上就会出现一个小图标,提示用户处理这个快讯,这时手从上方滑动状态栏就可以展开并处理这个快讯。

在帮助文档中,是这么说的, notification类表示一个持久的通知,将提交给用户使用NotificationManager。已添加的Notification.Builder,使其更容易构建通知。

notification是一种让你的应用程序在没有开启情况下或在后台运行警示用户。它是看不见的程序组件(Broadcast Receiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径。

先来区分以下状态栏和状态条的区别:

1、状态条就是手机屏幕最上方的一个条形状的区域;

在状态条有好多信息量:比如usb连接图标,手机信号图标,电池电量图标,时间图标等等;

Android编程开发之NotiFication用法详解

2、状态栏就是手从状态条滑下来的可以伸缩的view;

在状态栏中一般有两类(使用FLAG_标记):

(1)正在进行的程序;           (2)是通知事件;

Android编程开发之NotiFication用法详解

一个Notification传送的信息有:

1、一个状态条图标;

2、在拉伸的状态栏窗口中显示带有大标题,小标题,图标的信息,并且有处理该点击事件:比如调用该程序的入口类;

3、闪光,LED,或者震动;

下面对Notification类中的一些常量,字段,方法简单介绍一下:
常量:

DEFAULT_ALL                  使用所有默认值,比如声音,震动,闪屏等等
DEFAULT_LIGHTS            使用默认闪光提示
DEFAULT_SOUNDS         使用默认提示声音
DEFAULT_VIBRATE         使用默认手机震动

注意:在加入手机震动效果时一定要在项目清单文件中加入手机震动权限:

<uses-permission android:name="android.permission.VIBRATE" />


下面通过简单额小实例来具体实现notification功能:

MainActivity.java:


package com.example.lession16_notifi;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.res.Resources.NotFoundException;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends Activity {
 private NotificationManager notificationManager;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);
   // 第一步:通过getSystemService()方法得到NotificationManager对象;
   notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
 }
 // 测试
 public void test1(View v) {
   showNotification("来短信了", "5557", "hello!", R.drawable.ic_launcher,
       R.drawable.ic_launcher);
 }
 // 第二步:对Notification的一些属性进行设置比如:内容,图标,标题,相应notification的动作进行处理等等;
 public void showNotification(String tickerText, String contentTitle,
     String contentText, int iconId, int notiId) {
   // 创建一个Notification
   Notification notification = new Notification();
   // 设置通知 消息 图标
   notification.icon = iconId;
   // 设置发出消息的内容
   notification.tickerText = tickerText;
   // 设置发出通知的时间
   notification.when = System.currentTimeMillis();
   // 设置显示通知时的默认的发声、振动、Light效果
   notification.defaults = Notification.DEFAULT_VIBRATE;// 振动
   // Notification notification = new Notification(R.drawable.ic_launcher,"有新的消息", System.currentTimeMillis());
   // 3步:PendingIntent android系统负责维护
   PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,getIntent(), 0);
   // 4步:设置更加详细的信息
   notification.setLatestEventInfo(this, contentTitle, contentText,pendingIntent);
   // 5步:使用notificationManager对象的notify方法 显示Notification消息 需要制定
   // Notification的标识
   notificationManager.notify(notiId, notification);
 }
 // 6步:使用notificationManager对象的cancelAll()方法取消
 public void clearNoti(View v) {
   notificationManager.cancelAll();// 清除所有
 }
}

布局文件activity_main.xml:


<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".MainActivity" >
 <Button
   android:id="@+id/button1"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentLeft="true"
   android:layout_alignParentRight="true"
   android:layout_alignParentTop="true"
   android:layout_marginTop="22dp"
   android:onClick="test1"
   android:text="@string/text_notifi" />
 <Button
   android:id="@+id/button2"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_alignLeft="@+id/button1"
   android:layout_below="@+id/button1"
   android:layout_marginTop="60dp"
   android:onClick="clearNoti"
   android:text="@string/text_clear" />
</RelativeLayout>

布局效果:

Android编程开发之NotiFication用法详解

切记实现震动效果在清单文件中加入权限:

<uses-permission android:name="android.permission.VIBRATE" />


实现效果如下:

Android编程开发之NotiFication用法详解Android编程开发之NotiFication用法详解

希望本文所述对大家Android程序设计有所帮助。

标签:Android,NotiFication
0
投稿

猜你喜欢

  • SpringCloud学习笔记之OpenFeign进行服务调用

    2021-05-25 12:32:58
  • .NET单点登陆的实现方法及思路

    2023-06-10 10:13:53
  • 面试题:Java 实现查找旋转数组的最小数字

    2023-05-30 22:14:05
  • 详解Docker学习笔记之搭建一个JAVA Tomcat运行环境

    2022-09-03 02:26:06
  • 基于TabLayout中的Tab间隔设置方法(实例讲解)

    2023-12-05 06:56:10
  • Java8新特性之泛型的目标类型推断_动力节点Java学院整理

    2023-11-26 10:38:21
  • Java WebService 简单实例(附实例代码)

    2023-01-25 07:52:18
  • Spring+SpringMVC+MyBatis深入学习及搭建(一)之MyBatis的基础知识

    2021-09-27 15:12:59
  • java Semaphore共享锁实现原理解析

    2021-11-02 23:12:38
  • 关于C# 类的封装详情

    2023-11-29 05:38:20
  • Java实现对两个List快速去重并排序操作示例

    2023-05-02 03:40:14
  • C#使用windows服务发送邮件

    2022-05-31 11:54:55
  • Java使用 try-with-resources 实现自动关闭资源的方法

    2022-01-09 06:54:46
  • Java堆&优先级队列示例讲解(上)

    2023-04-09 11:09:59
  • Android7.0 MTK设置默认桌面

    2023-09-26 12:30:43
  • user32.dll 函数说明小结

    2021-10-13 12:19:21
  • C# Socket通信的实现(同时监听多客户端)

    2023-07-11 09:25:10
  • SpringBoot整合Mybatis-plus案例及用法实例

    2022-03-31 12:02:44
  • 分析SpringBoot的启动原理

    2021-10-30 16:01:23
  • 深入解析Android系统中应用程序前后台切换的实现要点

    2022-09-11 01:26:30
  • asp之家 软件编程 m.aspxhome.com