Android Q 使用通知欄消息


String myChannelId = "iot";
                String myChannelName = "告警通知服務";
                NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
                Notification notification = null;
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                    NotificationChannel channel = new NotificationChannel(myChannelId, myChannelName,
                            NotificationManager.IMPORTANCE_LOW);
                    Toast.makeText(this, myChannelId, Toast.LENGTH_SHORT).show();
                    manager.createNotificationChannel(channel);
                    notification = new NotificationCompat.Builder(this, myChannelId)
                            .setContentTitle("測試")
                            .setContentText("一個新消息")
                            .setWhen(System.currentTimeMillis())
                            .setShowWhen(true)
                            .setSmallIcon(R.mipmap.ic_launcher)
                            .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
                            .build();
                }else {
                    notification = new NotificationCompat.Builder(this, myChannelId)
                            .setContentTitle("This is a title")
                            .setContentText("This is a context")
                            .setWhen(System.currentTimeMillis())
                            .setSmallIcon(R.mipmap.ic_launcher)
                            .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
                            .build();
                }
                manager.notify(1, notification);


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM