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对象,在这一步需要