zoukankan      html  css  js  c++  java
  • 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);
    
  • 相关阅读:
    Android ANR 知多少
    电源管理
    功耗分析
    手机功耗测试
    Battery Historian
    Android 电量优化
    Android手机功耗
    功耗 Log 抓取要求规范
    Android 手机无法进入系统解决方案
    定屏死机问题操作指南
  • 原文地址:https://www.cnblogs.com/wjw1014/p/12287587.html
Copyright © 2011-2022 走看看