Android應(yīng)用中怎么實現(xiàn)通知欄閃動效果?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都創(chuàng)新互聯(lián)專注于寧國網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供寧國營銷型網(wǎng)站建設(shè),寧國網(wǎng)站制作、寧國網(wǎng)頁設(shè)計、寧國網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務(wù),打造寧國網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供寧國網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。顯示通知代碼:
private void showNotification(Context ctx, String url) { Notification n = new Notification(); n.flags |= Notification.FLAG_SHOW_LIGHTS; n.flags |= Notification.FLAG_AUTO_CANCEL; n.defaults = Notification.DEFAULT_SOUND; n.icon = R.drawable.ic_launcher; n.when = System.currentTimeMillis(); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setClassName(ctx.getPackageName(), MainActivity.class.getName()); PendingIntent pi = PendingIntent.getActivity(ctx, 0, intent, 0); n.setLatestEventInfo(ctx, "title", "summary", pi); NotificationManager manager = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE); manager.notify(0, n); }
分享名稱:Android應(yīng)用中怎么實現(xiàn)通知欄閃動效果-創(chuàng)新互聯(lián)
新聞來源:http://vcdvsql.cn/article30/dsohpo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計、App開發(fā)、搜索引擎優(yōu)化、網(wǎng)站維護、虛擬主機、網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)