溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android 廣播 通知 帶振動(dòng) 聲音

發(fā)布時(shí)間:2020-07-31 03:57:52 來(lái)源:網(wǎng)絡(luò) 閱讀:311 作者:leeyulong 欄目:移動(dòng)開(kāi)發(fā)

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,
               "通知未打開(kāi)顯示的標(biāo)題", System.currentTimeMillis());
       notification.setLatestEventInfo(context.getApplicationContext(),
               "通知的標(biāo)題", "通知的內(nèi)容" + 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);
   }
}

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI