Android 广播 通知 带振动 声音

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 广播 通知 带振动 声音,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。