Android开发--Notification和PendingIntent

手机上方的状态栏用于显示通知消息,实现的方法很简单,只需要记住五个步骤即可(步骤写在源代码中的注释中)。pendingIntent意思是延期执行的Intent,一般用于Notification中,下面这个例子即实现这两个功能:

public class Notification_Activity extends Activity {
	private Button button;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_notification_);
		button=(Button)findViewById(R.id.button);
		button.setOnClickListener(new OnClickListener() {
			
			@SuppressWarnings("deprecation")
			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				/*
				 * 创建和显示一个Notification需要以下5个步骤
				 * 1.通过getSystemService方法获得一个NotificationManager对象
				 * 2.创建一个Notification对象,每一个Notification对应一个Notification对象,在这一步需要
				 * 设置显示在屏幕上方状态栏的通知消息,通知消息前方的图像资源ID和发出的通知的时间
				 * 3.由于Notification可以与应用程序脱离,所以需要创建一个PendingIntent对象
				 * 4.使用Notification的setLatestEventInfo方法设置Notification的详细信息
				 * 5.使用NotificationManager类的notify方法显示Notification消息,这一步需要指定Notification唯一的ID
				 */
				NotificationManager notificationManager=(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
				Notification notification=new Notification(R.drawable.ic_launcher, "您有新的消息了!", System.currentTimeMillis());
				PendingIntent pendingIntent=PendingIntent.getActivity(Notification_Activity.this, 0, new Intent(Notification_Activity.this, otherActivity.class), 0);
				//这行代码的作用是使得这个通知不能被清除
				//notification.flags=Notification.FLAG_NO_CLEAR;
				notification.setLatestEventInfo(Notification_Activity.this, "周末时间到", "出去玩吧", pendingIntent);
				notificationManager.notify(0,notification);
			}
		});
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.activity_notification_, menu);
		return true;
	}

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值