将广播放在状态栏显示
package com.example.aa;
//运行后,弹出一个button按钮,点击这个按钮会在状态栏上运行这个项目。
public class MainActivity extends Activity {
NotificationManager nm ;//定义一个通知管理类对象nm
Notification n;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Button btn = new Button(this);
btn.setText("Button");
setContentView(btn);
nm = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
//定义一个通知类对象,参数是,显示通知的图标,名称和当前时间。
n = new Notification(R.drawable.ic_launcher, &