想到这个就想到消息推送,人人,QQ
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.view.View;import android.view.View.OnClickListener;import android.widget.Button;public class NotificationTestActivity extends Activity {    /** Called when the activity is first created. */private Button button01,button02;    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        button01=(Button) findViewById(R.id.button1);        button02=(Button) findViewById(R.id.button2);        button01.setOnClickListener(new Mybutton());        button02.setOnClickListener(new Mybutton());    }    class Mybutton implements OnClickListener{@Overridepublic void onClick(View v) {// TODO Auto-generated method stubint FLAG=0;NotificationManager manager=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);//获取系统NotificationManager服务Intent intent=new Intent();intent.setClass(getApplicationContext(), Notification.class);PendingIntent pendingIntent=PendingIntent.getActivity(getApplicationContext(), 0, intent, FLAG);Notification notification=new Notification();notification.when=System.currentTimeMillis();//发出这个通知的时间notification.defaults=Notification.DEFAULT_ALL;//提示方式,有震动,声音,闪关灯switch (v.getId()) {case R.id.button1:notification.icon=R.drawable.alert_15;notification.setLatestEventInfo(NotificationTestActivity.this, "通知", "手机在此联网", pendingIntent);notification.tickerText="联网通知";manager.notify(0, notification);break;            case R.id.button2:            manager.cancel(FLAG);//删除当前的notifcation            break;default:break;}}        }     }

加入一个权限,震动权限
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
Android 消息通知-Notification_第1张图片

更多相关文章

  1. android(6)(读数据的一些权限)
  2. Android - 对话框(Dialog)和通知(Notification)2
  3. Android sdcard 权限问题
  4. android中用socket 接收服务器的消息
  5. Android实现google消息通知
  6. Android root权限判断
  7. android添加通知到顶部任务栏
  8. Android ble setCharactersticNotification() 依然无法收到通知
  9. Android通知工具类,含8.0通知适配,打开通知设置页面适配

随机推荐

  1. android Immutable bitmap passed to Can
  2. Android涂鸦简单制作
  3. Android第九课 Toast 用法注意事项
  4. Android SSL BKS证书的生成过程
  5. 安卓模拟器设置网速和延迟
  6. 短视频app开源源码android 给图片加文字
  7. 在PC上体验Android
  8. OpenERP Android(安卓)DEMO工程发布下载
  9. 【Android View】Android中View对触摸事
  10. 模拟器无法启动,卡在android字样的界面上