Notificaton与NotificationManager
创建一个NotificationMannager
NotificationManager类是一个通知管理器,这个对象是由系统维护的服务,是以单例模式的方式获得,所以一般不直接实例化这个对象。在Activity中,可以使用Activity.getSystemService(String)方法获取NotificationManager对象,Activity.getSystemService(String)方法可以通过Android系统服务的句柄,返回对应的对象。在这里需要返回NotificationManager,所以直接传递Context.NOTIFICATION_SERVICE即可。
使用Builder构造器来创建Notification对象
使用NoyificationCompat类的Builder构造器来创建Notification对象,可以保证程序在所有的版本上都能正常工作。Android8.0新增了通知渠道这个概念,如果没有设置,则通知无法在Android8.0的机器上显示
NotificationChannel
通知渠道:Android8.0引入了通知渠道,其允许您为要显示的每种通知类型创建用户可知定义的渠道。
通知重要程度设置,NotificationMannager类中
-
IMPORTANCE_NONE关闭通知
-
IMPORTANCE_MIN开启通知,不会弹出,但没有提示音,状态栏中无显示
-
IMPORTANCE_LOW开启通知,不会弹出,发出提示音,状态栏中显示
-
IMPORTANCE_DEFAULT开启通知,不会弹出,发出提示音,状态栏中显示
-
IMPORTANCE_HIGH开启通知,会弹出,发出提示音,状态栏中显示
常见方法说明
-
setContent(String string)设置标题
-
setContentText(String string)设置文本内容
-
setSmallIcon(int icon)设置小图标
-
setLargelcon(Bitmap icon)设置通知的大图标
-
setColor(int argb)设置小图标颜色
-
setContentIntent(Pending intent)设置点击通知后的跳转意图
-
setAutoCancel(boolean boolean)设置点击通知后直动清除通知
-
setWhen(long when)设置通知被创建的时间
package com.example.projet01;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.NotificationCompat;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.os.Build;
import android.os.Bundle;
import android.view.View;
public class NotificationActivity extends AppCompatActivity {
private NotificationManager manager;
private Notification notification;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notification);
manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
NotificationChannel channel = new NotificationChannel("wu", "测试通知",
NotificationManager.IMPORTANCE_HIGH);
manager.createNotificationChannel(channel);
}
Intent intent = new Intent(this, NotActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
notification = new NotificationCompat.Builder(this,"wu")
.setContentTitle("官方通知")
.setContentText("世界这么大,你想去看看吗?")
.setSmallIcon(R.drawable.ic_baseline_person_24)
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.drawable.icon_01))
.setColor(Color.parseColor("#FF0000"))
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.build();
}
public void sendNotification(View view) {
manager.notify(1,notification);
}
public void cacelNotification(View view) {
manager.cancel(1);
}
}