我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android之Notification的多种用法实例

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android之Notification的多种用法实例

我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的。

我们也知道Android系统也是在不断升级的,有关Notification的用法也就有很多种,有的方法已经被android抛弃了,现在我实现了三种不同的方法,并适应不同的android版本。现在我就把代码公布出来,我喜欢把解释写在代码中,在这里我就不多说了,

先看效果图:

再看代码,主要的代码如下:


package net.loonggg.notification; 
import android.app.Activity; 
import android.app.Notification; 
import android.app.NotificationManager; 
import android.app.PendingIntent; 
import android.content.Context; 
import android.content.Intent; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.RemoteViews; 
public class MainActivity extends Activity { 
  private static final int NOTIFICATION_FLAG = 1; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
  } 
  public void notificationMethod(View view) { 
    // 在Android进行通知处理,首先需要重系统哪里获得通知管理器NotificationManager,它是一个系统Service。 
    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
    switch (view.getId()) { 
    // 默认通知 
    case R.id.btn1: 
      // 创建一个PendingIntent,和Intent类似,不同的是由于不是马上调用,需要在下拉状态条出发的activity,所以采用的是PendingIntent,即点击Notification跳转启动到哪个Activity 
      PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, 
          new Intent(this, MainActivity.class), 0); 
      // 下面需兼容Android 2.x版本是的处理方式 
      // Notification notify1 = new Notification(R.drawable.message, 
      // "TickerText:" + "您有新短消息,请注意查收!", System.currentTimeMillis()); 
      Notification notify1 = new Notification(); 
      notify1.icon = R.drawable.message; 
      notify1.tickerText = "TickerText:您有新短消息,请注意查收!"; 
      notify1.when = System.currentTimeMillis(); 
      notify1.setLatestEventInfo(this, "Notification Title", 
          "This is the notification message", pendingIntent); 
      notify1.number = 1; 
      notify1.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明当通知被用户点击时,通知将被清除。 
      // 通过通知管理器来发起通知。如果id不同,则每click,在statu那里增加一个提示 
      manager.notify(NOTIFICATION_FLAG, notify1); 
      break; 
    // 默认通知 API11及之后可用 
    case R.id.btn2: 
      PendingIntent pendingIntent2 = PendingIntent.getActivity(this, 0, 
          new Intent(this, MainActivity.class), 0); 
      // 通过Notification.Builder来创建通知,注意API Level 
      // API11之后才支持 
      Notification notify2 = new Notification.Builder(this) 
          .setSmallIcon(R.drawable.message) // 设置状态栏中的小图片,尺寸一般建议在24×24,这个图片同样也是在下拉状态栏中所显示,如果在那里需要更换更大的图片,可以使用setLargeIcon(Bitmap 
                            // icon) 
          .setTicker("TickerText:" + "您有新短消息,请注意查收!")// 设置在status 
                                // bar上显示的提示文字 
          .setContentTitle("Notification Title")// 设置在下拉status 
                              // bar后Activity,本例子中的NotififyMessage的TextView中显示的标题 
          .setContentText("This is the notification message")// TextView中显示的详细内容 
          .setContentIntent(pendingIntent2) // 关联PendingIntent 
          .setNumber(1) // 在TextView的右方显示的数字,可放大图片看,在最右侧。这个number同时也起到一个序列号的左右,如果多个触发多个通知(同一ID),可以指定显示哪一个。 
          .getNotification(); // 需要注意build()是在API level 
      // 16及之后增加的,在API11中可以使用getNotificatin()来代替 
      notify2.flags |= Notification.FLAG_AUTO_CANCEL; 
      manager.notify(NOTIFICATION_FLAG, notify2); 
      break; 
    // 默认通知 API16及之后可用 
    case R.id.btn3: 
      PendingIntent pendingIntent3 = PendingIntent.getActivity(this, 0, 
          new Intent(this, MainActivity.class), 0); 
      // 通过Notification.Builder来创建通知,注意API Level 
      // API16之后才支持 
      Notification notify3 = new Notification.Builder(this) 
          .setSmallIcon(R.drawable.message) 
          .setTicker("TickerText:" + "您有新短消息,请注意查收!") 
          .setContentTitle("Notification Title") 
          .setContentText("This is the notification message") 
          .setContentIntent(pendingIntent3).setNumber(1).build(); // 需要注意build()是在API 
                                      // level16及之后增加的,API11可以使用getNotificatin()来替代 
      notify3.flags |= Notification.FLAG_AUTO_CANCEL; // FLAG_AUTO_CANCEL表明当通知被用户点击时,通知将被清除。 
      manager.notify(NOTIFICATION_FLAG, notify3);// 步骤4:通过通知管理器来发起通知。如果id不同,则每click,在status哪里增加一个提示 
      break; 
    // 自定义通知 
    case R.id.btn4: 
      // Notification myNotify = new Notification(R.drawable.message, 
      // "自定义通知:您有新短信息了,请注意查收!", System.currentTimeMillis()); 
      Notification myNotify = new Notification(); 
      myNotify.icon = R.drawable.message; 
      myNotify.tickerText = "TickerText:您有新短消息,请注意查收!"; 
      myNotify.when = System.currentTimeMillis(); 
      myNotify.flags = Notification.FLAG_NO_CLEAR;// 不能够自动清除 
      RemoteViews rv = new RemoteViews(getPackageName(), 
          R.layout.my_notification); 
      rv.setTextViewText(R.id.text_content, "hello wrold!"); 
      myNotify.contentView = rv; 
      Intent intent = new Intent(Intent.ACTION_MAIN); 
      PendingIntent contentIntent = PendingIntent.getActivity(this, 1, 
          intent, 1); 
      myNotify.contentIntent = contentIntent; 
      manager.notify(NOTIFICATION_FLAG, myNotify); 
      break; 
    case R.id.btn5: 
      // 清除id为NOTIFICATION_FLAG的通知 
      manager.cancel(NOTIFICATION_FLAG); 
      // 清除所有的通知 
      // manager.cancelAll(); 
      break; 
    default: 
      break; 
    } 
  } 
} 

再看主布局文件:


<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=".MainActivity" > 
  <Button 
    android:id="@+id/btn1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:onClick="notificationMethod" 
    android:text="默认通知(已被抛弃,但是通用)" /> 
  <Button 
    android:id="@+id/btn2" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:onClick="notificationMethod" 
    android:text="默认通知(API11之后可用)" /> 
  <Button 
    android:id="@+id/btn3" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:onClick="notificationMethod" 
    android:text="默认通知(API16之后可用)" /> 
  <Button 
    android:id="@+id/btn4" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:onClick="notificationMethod" 
    android:text="自定义通知" /> 
  <Button 
    android:id="@+id/btn5" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:onClick="notificationMethod" 
    android:text="清除通知" /> 
</LinearLayout> 

还有一个是:自定义通知的布局文件my_notification.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="wrap_content" 
  android:background="#ffffff" 
  android:orientation="vertical" > 
  <TextView 
    android:id="@+id/text_content" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textSize="20sp" /> 
</LinearLayout> 
您可能感兴趣的文章:Android种使用Notification实现通知管理以及自定义通知栏实例(示例四)详解Android中使用Notification实现进度通知栏(示例三)Android使用Notification实现宽视图通知栏(二)Android使用Notification实现普通通知栏(一)Android 推送原理(Android Push Notification)详解Android开发之Notification通知用法详解Android开发入门之Notification用法分析Android开发 -- 状态栏通知Notification、NotificationManager详解Android中Notification的用法汇总Android编程自定义Notification实例分析


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android之Notification的多种用法实例

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android之Notification的多种用法实例

我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的。我们也知道Android系统也是在不断升级的,有
2022-06-06

Android Notification的多种用法总结

Android Notification的多种用法总结我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问
2023-05-31

Android中Notification用法实例总结

本文实例总结了 Android中Notification用法。分享给大家供大家参考,具体如下: 我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今
2022-06-06

Android中new Notification创建实例的最佳方法

目前 Android 已经不推荐使用下列方式创建 Notification实例:Notification notification = new Notification(R.drawable.ic_launcher,"This is tic
2022-06-06

Android种使用Notification实现通知管理以及自定义通知栏实例(示例四)

示例一:实现通知栏管理 当针对相同类型的事件多次发出通知,作为开发者,应该避免使用全新的通知,这时就应该考虑更新之前通知栏的一些值来达到提醒用户的目的。例如我们手机的短信系统,当不断有新消息传来时,我们的通知栏仅仅是更改传来短信的数目,而不
2022-06-06

android之camera用法实例详解

本文实例讲述了android之camera用法。分享给大家供大家参考。具体如下: 1.关于预览横竖差90度的问题 原因分析 经过查证和实验,可以证实:Android提供的SDK(android.hardware.Camera)里大概不能正常
2022-06-06

Android开发之Service用法实例

本文实例讲述了Android开发之Service用法。分享给大家供大家参考。具体分析如下: Service是一个生命周期较长而且没有界面的程序。 下面通过一个播放mp3的例子来学习。 先看MainActivity.javapackage c
2022-06-06

Android开发之ViewSwitcher用法实例

本文实例讲述了Android开发之ViewSwitcher用法。分享给大家供大家参考,具体如下: android.widget.ViewSwitcher是ViewAnimator的子类,用于在两个View之间切换,但每次只能显示一个View
2022-06-06

Android系列之Intent传递对象的几种实例方法

在Android中intent传递对象主要有2种方式分别是,Bundle.putSerializable(Key,Object)和Bundle.putParcelable(Key, Object);当然这些Object是有一定的条件的,前者
2022-06-06

android使用Messenger绑定Service的多种实现方法

如果你需要在不同进程间通信,你可以在Service中使用Messenger来实现进程中通信。 如果使用这种方式,Service中需要定义一个Handler对象(负责对客户端发送过来的Message进行响应)。 Messenger可以共享给c
2022-06-06

Android编程开发之RadioGroup用法实例

本文实例讲述了Android编程开发之RadioGroup用法。分享给大家供大家参考,具体如下: RadioGroup 有时候比较有用.主要特征是给用户提供多选一机制。MainActivity.javapackage com.example
2022-06-06

Android控件之Spinner用法实例分析

本文实例讲述了Android控件之Spinner用法。分享给大家供大家参考。具体如下: 以下模拟下拉列表的用法 布局文件:
2022-06-06

Android控件之TabHost用法实例分析

本文实例讲述了Android控件之TabHost用法。分享给大家供大家参考。具体如下: 以下通过TabHost实现android选项卡。 main.xml布局文件: <
2022-06-06

Android控件之Gallery用法实例分析

本文实例讲述了Android控件之Gallery用法。分享给大家供大家参考。具体如下: Gallery组件主要用于横向显示图像列表,不过按常规做法。Gallery组件只能有限地显示指定的图像。也就是说,如果为Gallery组件指定了10张图
2022-06-06

Android提高之Service用法实例解析

前面文章介绍了Activity以及Intent的使用,本文就来介绍Service。如果把Activity比喻为前台程序,那么Service就是后台程序,Service的整个生命周期都只会在后台执行。Service跟Activity一样也由I
2022-06-06

Android控件之GridView用法实例分析

本文实例讲述了Android控件之GridView用法。分享给大家供大家参考。具体如下: GridView是一项显示二维的viewgroup,可滚动的网格。一般用来显示多张图片。 以下模拟九宫图的实现,当鼠标点击图片时会进行相应的跳转链接。
2022-06-06

Android控件之ScrollView用法实例分析

本文实例讲述了Android控件之ScrollView用法。分享给大家供大家参考。具体如下: ScrollView滚动视图是指当拥有很多内容,屏幕显示不完时,需要通过滚动跳来显示的视图。 ScrollView只支持垂直滚动。 以下为案例 m
2022-06-06

Android入门之Gallery用法实例解析

本文实例介绍的Android的Gallery控件是个很不错的看图控件,可以大大减轻开发者对于看图功能的开发,并且效果也很美观。本文实例中的Gallery的用法,主要实现用反射机制来动态读取资源中的图片。 该实例代码运行的效果图如下: m
2022-06-06

Android开发之Location用法实例分析

本文实例讲述了Android开发中Location用法。分享给大家供大家参考,具体如下: Location 在Android 开发中还是经常用到的,如通过经纬度获取天气,根据Location 获取所在地区详细Address (比如Googl
2022-06-06

Android控件之ListView用法实例详解

本文实例讲述了Android控件之ListView用法。分享给大家供大家参考。具体如下: 示例一: 在android开发中ListView是比较常用的组件,它以列表的形式展示具体内容,并且能够根据数据的长度自适应显示。 main.xml布局
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录