首页 > 移动平台 > 详细

Android 广播 通知 带振动 声音

时间:2014-02-28 18:02:13      阅读:547      评论:0      收藏:0      [点我收藏+]

public class MyBroadCastReceiver extends BroadcastReceiver {

   @SuppressWarnings("deprecation")
   @Override
   public void onReceive(Context context, Intent intent) {
       // TODO Auto-generated method stub
       String string = intent.getStringExtra("msg");
       Toast.makeText(context, string, 0).show();
       NotificationManager manager = (NotificationManager) context
               .getSystemService(Context.NOTIFICATION_SERVICE);

       Intent intent2 = new Intent(context, MainActivity.class);
       intent2.putExtra("NOTICE", true);

       intent2.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
               | Intent.FLAG_ACTIVITY_NEW_TASK);
       PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
               intent2, PendingIntent.FLAG_UPDATE_CURRENT);
       Notification notification = new Notification(R.drawable.ic_launcher,
               "通知未打开显示的标题", System.currentTimeMillis());
       notification.setLatestEventInfo(context.getApplicationContext(),
               "通知的标题", "通知的内容" + string, pendingIntent);
       AudioManager mAudioManager = (AudioManager) context
               .getSystemService(Context.AUDIO_SERVICE);

       notification.flags = Notification.FLAG_AUTO_CANCEL;
       notification.defaults = Notification.DEFAULT_LIGHTS
               | Notification.DEFAULT_VIBRATE;
       notification.sound = Uri.parse("android.resource://"
               + context.getPackageName() + "/" + R.raw.newdatatoast);
       manager.notify(0, notification);
   }
}

Android 广播 通知 带振动 声音,布布扣,bubuko.com

Android 广播 通知 带振动 声音

原文:http://leerain.blog.51cto.com/8277864/1364336

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!