NotificationManager通知管理者

林弘文
2023-12-01
NotificationManager用于本地通知,例如设置一个时间点出发NotificationManager用来提醒用户等。我用的是apI30,之前找了很多方法,都是好几年前的方法,得不到效果,刚好在之前自己也找了这个相关的方法与实例,不过今日再来找找不到了,也不知道资源都跑到哪里去了,反正一句话就是找不着。所以我把这段基本的代码公示出来,很显然在高深一点,我也不会。就说到这里吧,一起进步吧。
package com.example.demod41;

import androidx.appcompat.app.AppCompatActivity;

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends AppCompatActivity {

    private NotificationManager notificationManager;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        notificationManager= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); //获取通知服务管理者
    }
    //创建Notification
    public void click(View view){
        String channelID = "default";
        String channelName="默认通知";
        //绑定PendingIntent无法执行,因为我也不知道。
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("www.baidu.com"));
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        PendingIntent pendingIntent = PendingIntent.getActivity(this,1,intent,PendingIntent.FLAG_ONE_SHOT); //构造绑定pendingIntent
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){ //如果大于26
           //IMPORTANCE_HIGH 重要性很高
            notificationManager.createNotificationChannel(new NotificationChannel(channelID,channelName,NotificationManager.IMPORTANCE_HIGH));
        }
        Notification.Builder builder = new Notification.Builder(this,channelID);
        builder.setSmallIcon(R.drawable.ic_launcher_foreground); //小图标
        builder.setContentIntent(pendingIntent);
        builder.setAutoCancel(true); //自动quxiao
        builder.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.drawable.iask_question));
        builder.setContentTitle("我是大标题通知");
        builder.setContentText("我是通知内容");
        builder.setSubText("用于提交的标题");
        builder.setTicker("你的宝贝发过来的信息通知");
        builder.setWhen(System.currentTimeMillis());//时间

        notificationManager.notify(channelID,1,builder.build());
        //notificationManager.notify(1,builder.build());
    }
   //取消通知
    public void cancelNotification(View view){
        notificationManager.cancel(1);
    }
}

 类似资料: