`

Android学习之Notification通知

阅读更多

NotificationActivity.java:

package com.demo.notification;

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.support.v4.app.NotificationCompat;
import android.support.v4.app.NotificationCompat.Builder;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RemoteViews;

import com.demo.broadcast.R;

/**  
 * @ClassName: NotificationActivity  
 * @Description: 通知测试demo
 * @author chenzheng
 * @date 2014-9-5 下午2:54:14  
 */
public class NotificationActivity extends Activity implements OnClickListener{
	
	private Button btn_show_intent_act, btn_show_custom;
	/** Notification构造器 */
	private NotificationCompat.Builder mBuilder;
	/** Notification的ID */
	private int notifyId = 100;
	/** Notification管理 */
	private NotificationManager mNotificationManager;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.notification);
		
		initService();
		btn_show_intent_act = (Button) findViewById(R.id.btn_show_intent_act);
		btn_show_intent_act.setOnClickListener(this);
		btn_show_custom = (Button) findViewById(R.id.btn_show_custom);
		btn_show_custom.setOnClickListener(this);
	}
	
	@Override
	public void onClick(View v) {
		switch (v.getId()) {
		case R.id.btn_show_intent_act:
			showIntentActivityNotify();
			break;
		case R.id.btn_show_custom:
			showCustomNotify();
			break;
		default:
			break;
		}
	}
	
	/** 显示通知栏点击跳转到指定Activity */
	public void showIntentActivityNotify(){
		mBuilder = new NotificationCompat.Builder(this);
		mBuilder.setAutoCancel(true)//点击后让通知将消失  
				.setContentTitle("测试标题")
				.setContentText("点击跳转")
				.setContentIntent(getDefalutIntent(Notification.FLAG_AUTO_CANCEL))
				.setTicker("点我")
				.setWhen(System.currentTimeMillis())//通知产生的时间,会在通知信息里显示
				.setPriority(Notification.PRIORITY_DEFAULT)//设置该通知优先级
				.setOngoing(false)//ture,设置他为一个正在进行的通知。他们通常是用来表示一个后台任务,用户积极参与(如播放音乐)或以某种方式正在等待,因此占用设备(如一个文件下载,同步操作,主动网络连接)
				.setDefaults(Notification.DEFAULT_VIBRATE)//向通知添加声音、闪灯和振动效果的最简单、最一致的方式是使用当前的用户默认设置,使用defaults属性,可以组合:
				//Notification.DEFAULT_ALL  Notification.DEFAULT_SOUND 添加声音 // requires VIBRATE permission
				.setSmallIcon(R.drawable.ic_launcher);
		//点击的意图ACTION是跳转到Intent
		Intent resultIntent = new Intent(this, NotificationActivity.class);
		resultIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
		PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
		mBuilder.setContentIntent(pendingIntent);
		mNotificationManager.notify(notifyId, mBuilder.build());
		
	}
	
	/** 显示自定义通知*/
	public void showCustomNotify(){
		//先设定RemoteViews
		RemoteViews view_custom = new RemoteViews(getPackageName(), R.layout.view_custom);
		//设置对应IMAGEVIEW的ID的资源图片
		view_custom.setImageViewResource(R.id.custom_icon, R.drawable.ic_launcher);
		view_custom.setTextViewText(R.id.tv_custom_title, "淘宝放价");
		view_custom.setTextViewText(R.id.tv_custom_content, "欢乐中秋,淘宝大放价,千万豪礼等你来拿。");
		mBuilder = new Builder(this);
		mBuilder.setContent(view_custom)
				.setContentIntent(getDefalutIntent(Notification.FLAG_AUTO_CANCEL))
				.setWhen(System.currentTimeMillis())// 通知产生的时间,会在通知信息里显示
				.setTicker("有新消息")
				.setPriority(Notification.PRIORITY_DEFAULT)// 设置该通知优先级
				.setOngoing(false)//不是正在进行的   true为正在进行  效果和.flag一样
				.setSmallIcon(R.drawable.ic_launcher);
		Notification notify = mBuilder.build();
		notify.contentView = view_custom;
		mNotificationManager.notify(notifyId, notify);
	}
	
	/**
	 * 初始化要用到的系统服务
	 */
	private void initService() {
		mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
	}
	
	/**
	 * @获取默认的pendingIntent,为了防止2.3及以下版本报错
	 * @flags属性:  
	 * 在顶部常驻:Notification.FLAG_ONGOING_EVENT  
	 * 点击去除: Notification.FLAG_AUTO_CANCEL 
	 */
	public PendingIntent getDefalutIntent(int flags){
		PendingIntent pendingIntent= PendingIntent.getActivity(this, 1, new Intent(), flags);
		return pendingIntent;
	}
}

 

 

notification.xml:

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

    <Button
        android:id="@+id/btn_show_intent_act"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="显示通知,点击跳转到指定Activity" />
    
    <Button
        android:id="@+id/btn_show_custom"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="显示自定义通知" />

</LinearLayout>

 

 

view_custom.xml:

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

    <ImageView
        android:id="@+id/custom_icon"
        android:layout_width="50dip"
        android:layout_height="50dip"
        android:layout_alignParentLeft="true"
        android:layout_margin="5dip"
        android:padding="5dip"
        android:src="@drawable/ic_launcher" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@id/custom_icon"
        android:orientation="vertical" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/tv_custom_title"
                style="@style/NotificationTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:text="title"
                android:textSize="15sp" />

            <TextView
                android:id="@+id/tv_custom_time"
                style="@style/NotificationTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:text="16.49"
                android:textSize="12sp" />
        </RelativeLayout>

        <TextView
            android:id="@+id/tv_custom_content"
            style="@style/NotificationContent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="1dip"
            android:text="content"
            android:textSize="12sp" />
    </LinearLayout>

</RelativeLayout>

 

添加允许震动权限:

 

 

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

 

 

 

  • 大小: 17 KB
分享到:
评论

相关推荐

    Android 通知栏Notification的全面整合学习(各种姿势都有,供您选择)

    在Android系统中,通知栏(Notification)是一种至关重要的交互手段,它允许应用在不干扰用户当前操作的情况下,向用户传达信息或提醒。本资源包针对Android通知栏的使用进行了全面整合,涵盖了各种应用场景和实现...

    notification-Android带按钮自定义通知栏

    在Android开发中,通知栏(Notification)是向用户传达应用后台事件或信息的重要途径。一个标准的通知通常包含标题、文本...这个项目是一个很好的学习资源,对于想要增强其应用通知功能的Android开发者而言非常有价值。

    Android 学习(27)Notification 通知

    在Android开发中,Notification是应用与用户交互的重要方式之一,尤其在后台运行时,通过Notification向用户展示消息,提醒用户有新的活动或者信息。在本篇文章中,我们将深入探讨`Notification`及其相关类,如`...

    android Notification通知消息学习(NotificationManager)

    这篇博文“android Notification通知消息学习(NotificationManager)”显然是探讨如何有效地利用NotificationManager来创建和管理Android的通知。NotificationManager是Android提供的一个系统服务,用于管理和显示...

    Android 通知栏Notification的全面整合学习(完整项目源码)附配套博文

    这个是通知栏框架(Notificaiton)的全面学习,里面把大概所有的情况都列了出来,通过一个DEMO让你了解它的大致所有使用过程。 可以通过以下博文进行配套了解(有效果图): ...

    安卓Android源码——notification1.rar

    通过分析`notification1.rar`中的源代码,我们可以学习如何创建、管理和自定义通知,理解Android系统是如何处理和显示通知的,这对于提升应用用户体验和优化通知功能非常有帮助。同时,源码研究也有助于开发者遵循...

    Android音乐播放器(含notification通知栏操作,自动获取本地音乐操作)

    本项目"Android音乐播放器(含notification通知栏操作,自动获取本地音乐操作)"旨在教授如何构建一个具备通知栏控制功能并能自动扫描本地音乐库的播放器。以下是关于这个项目的关键知识点: 1. **通知栏操作...

    android学习之toast和notification

    此外,了解Android的通知渠道(Notification Channels)也是现代Android开发中不可或缺的一部分。自Android Oreo(8.0)起,系统要求对通知进行分类,创建并管理通知渠道可以确保你的应用能在不同版本的Android上...

    Android应用源码之notification.zip

    "Android应用源码之notification.zip"这个压缩包很可能是包含了关于Android通知(Notification)系统实现的源代码示例,可以帮助开发者深入理解如何在自己的应用中创建、管理和定制通知。 1. **Notification的基本...

    Android 实现Notification的通知栏常驻-IT计算机-毕业设计.zip

    本项目"Android实现Notification的通知栏常驻"是一个Android应用源码开发Demo,适用于毕业设计学习,旨在帮助学生理解和掌握如何创建并维护一个始终显示在通知栏的Notification。 首先,我们需要了解Notification的...

    Android应用源码之实现Notification的通知栏常驻-IT计算机-毕业设计.zip

    在标题"Android应用源码之实现Notification的通知栏常驻"中,主要关注的是如何使Notification即使在用户离开应用后仍然保留在通知栏,提供持续的可见性。这通常涉及到Android的Notification持久性和优先级设置。 ...

    Android高级应用源码-状态栏通知小图标,notification通知.zip

    此压缩包"Android高级应用源码-状态栏通知小图标,notification通知.zip"显然包含了关于如何在Android应用中实现状态栏通知,特别是定制小图标的示例代码。 状态栏通知通常由三部分组成:通知图标、通知标题和通知...

    Android自定义通知栏Notification

    在Android开发中,自定义通知栏Notification是一种提升用户体验的重要手段。Notification是系统级的消息提示,它可以在用户不直接与应用交互时提供信息,比如在状态栏显示消息、更新或者提醒。本项目“Android自定义...

    状态栏通知小图标,notification通知

    在这个demo中,开发者可能提供了简化版的代码示例,方便初学者理解和学习如何在Android应用中创建和发送`Notification`。通过这个例子,开发者可以了解到`Notification`的基本构造和使用方法,并可以根据实际需求...

    Android高级应用源码-实现Notification的通知栏常驻.rar

    本资源“Android高级应用源码-实现Notification的通知栏常驻.rar”提供了一套实现通知栏常驻的源代码,这对于开发者来说是一个很好的学习和参考材料。 首先,我们要理解什么是常驻通知。在Android中,常驻通知是指...

    Android中notification通知的Demo——震动,铃声,Led灯闪烁

    "Android中notification通知的Demo——震动,铃声,Led灯闪烁"这个主题主要涉及如何创建具有特殊反馈效果的通知,如震动、铃声和Led灯闪烁。以下是对这些知识点的详细解释: 1. **Notification的创建**: 创建一个...

    AndroidNotification

    在Android系统中,Notification是应用与用户...总之,`AndroidNotification`项目提供了一个全面学习和测试Android通知功能的平台,开发者可以通过此项目深入了解Notification的各个方面,提升自己的Android开发技能。

    Android应用源码之实现Notification的通知栏常驻.zip

    "Android应用源码之实现Notification的通知栏常驻"这个主题主要关注如何使Notification在用户的设备通知栏中持续显示,即使用户关闭或离开应用也是如此。下面我们将深入探讨相关的Android知识点。 首先,了解...

    Android代码-状态栏通知小图标notification通知.rar

    "Android代码-状态栏通知小图标notification通知.rar"这个压缩包很可能是包含了一些示例代码,用于展示如何创建和定制状态栏通知,特别是关于小图标的使用。 首先,我们要理解Android中的状态栏通知是如何工作的。...

    学习android notification用法

    首先,我们要知道Notification在Android系统中的主要组成部分:通知渠道(Notification Channel)、通知头像、通知图标、通知标题、通知内容、通知子内容、通知动作(Action)等。这些元素共同构建了一个完整的通知...

Global site tag (gtag.js) - Google Analytics