Android中Notification用法实例总结_Android

本文实例总结了 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程序设计有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
Notification用法
notification的用法、notification用法、android notification、iframe用法实例、java枚举类的用法实例,以便于您获取更多的相关知识。

时间: 2024-10-02 07:52:58

Android中Notification用法实例总结_Android的相关文章

Android中AlertDialog用法实例分析_Android

本文实例分析了Android中AlertDialog用法,分享给大家供大家参考,具体如下: Android中AlertDialog为一些程序提供了对话框,有些功能能够进一步满足程序的需要.下面举例介绍. 程序如下: import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.

Android中ImageView用法实例分析_Android

本文实例分析了Android中ImageView用法.分享给大家供大家参考,具体如下: 猜牌游戏大家可能以前都玩过,这里我们用这个小游戏来说明ImageView的用法. 首先,在res/drawable中引入三张牌:分别是梅花7,梅花8,梅花9 然后在res/layout/main.xml中配置一个TextView,三个ImageView以及一个Button <?xml version="1.0" encoding="utf-8"?> <Linea

Android中ListView用法实例分析_Android

本文实例分析了Android中ListView用法.分享给大家供大家参考,具体如下: 通过在Layout中添加ListView Widget可以达到在页面布局具有列表效果的交互页面.在这里通过举例来说明怎样在Layout中添加ListView以及怎样应用. 配合设计了两个事件Listener:  OnItemSelectedListener事件为鼠标的滚轮转动时所选择的值:OnItemClickListener事件则为当鼠标单击时,所触发的事件.由此可以区别出list中的"选择"与&q

Android中ListActivity用法实例分析_Android

本文实例分析了Android中ListActivity用法.分享给大家供大家参考,具体如下: 程序如下: import android.app.ListActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.ArrayAdapter; import android.widge

Android中Bitmap用法实例分析_Android

本文实例讲述了Android中Bitmap用法.分享给大家供大家参考,具体如下: 一般在android程序中把图片文件放在res/drawable目录下就可以通过R.drawable.id来使用,但在存储卡中的图片怎样引用呢?下面通过实现这个功能来介绍Bitmap的用法. 程序如下: import java.io.File; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.B

Android中WebView用法实例分析_Android

本文实例讲述了Android中WebView用法.分享给大家供大家参考,具体如下: WebView相当于一个迷你浏览器,采用WebKit内核,因此完美支持html,javascript,css等. 在开发过程中应该注意几点: 1.AndroidManifest.xml中必须使用许可"android.permission.INTERNET",否则会出Web page not available错误. 2.如果访问的页面中有Javascript,则webview必须设置支持Javascri

Java中的instanceof关键字在Android中的用法实例详解_java

在下面介绍Android中如何使用instanceof关键字开发更方便时,先来温习一下java中instanceof的概念. instanceof大部分的概念是这样定义的:instanceof是Java的一个二元操作符,和==,>,<是同一类东西.由于它是由字母组成的,所以也是Java的保留关键字.它的作用是测试它左边的对象是否是它右边的类的实例,返回boolean类型的数据.举个栗子: String s = "I AM an Object!"; boolean isObj

Android 中WallpaperManager用法实例

Android 中WallpaperManager用法实例 注意:壁纸的设置得加入权限: <uses-permission android:name="android.permission.SET_WALLPAPER"/> 1.WallpaperManager  对象的获得: wallpaperManager =WallpaperManager.getInstance(this); 2.设置壁纸的方法: 方法一:wallpaperManager.setBitmap(); /

Android中TelephonyManager用法实例_Android

本文实例讲述了Android中TelephonyManager用法.分享给大家供大家参考,具体如下: 一.概述: TelephonyManager类主要提供了一系列用于访问与手机通讯相关的状态和信息的get方法.其中包括手机SIM的状态和信息.电信网络的状态及手机用户的信息.在应用程序中可以使用这些get方法获取相关数据. TelephonyManager类的对象可以通过Context.getSystemService(Context.TELEPHONY_SERVICE)方法来获得,需要注意的是