码迷,mamicode.com
首页 > 移动开发 > 详细

Android--PendingIntent 实现发送通知notification

时间:2015-01-26 10:16:53      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:android   pendingintent   notification   

.java代码如下:

package org.lxh.demo;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnFocusChangeListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class Hello extends Activity {

	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState); // 生命周期方法
		super.setContentView(R.layout.main); // 设置要使用的布局管理器
		NotificationManager notificationManager = (NotificationManager) super
				.getSystemService(Activity.NOTIFICATION_SERVICE);
		Notification notification = new Notification(R.drawable.pic_m, "您有新消息",
				System.currentTimeMillis());// 实例化对象
		PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
				super.getIntent(), PendingIntent.FLAG_UPDATE_CURRENT);// 创建一个PendingIntent对象
		notification.setLatestEventInfo(this, "新消息", "通知测试,谢谢", contentIntent);
		notificationManager.notify("notice", R.drawable.pic_m, notification);

	}
}

实现效果如下:

技术分享

Android--PendingIntent 实现发送通知notification

标签:android   pendingintent   notification   

原文地址:http://blog.csdn.net/yayun0516/article/details/43148969

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!