Android 移动应用开发 使用Notification通知 及NotificationChannel的使用

  1. 首先需要一个notificationmanager对象来对通知进行管理。代码如下
notificationmanager manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);

2.使用一个Builder构造器来创建一个Notification对象

Notification notification = new NotificationCompat.Builder(content).build();

3.当然,上面的代码只是创建了一个空的Notification对象,我们可以在.build()前面添加多个设置方法来对Notification进行设置

Notification notification = new NotificationCompat.Builder(MainActivity.this)
        .setContentTitle("牛皮哄哄")  //设置通知标题
        .setContentText("精神小伙")   //设置通知内容
        .setWhen(System.currentTimeMillis()) //指定通知被创建的时间
        .setSmallIcon(R.mipmap.ic_launcher)  //使用小图标
        .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)) //使用大图片
        .build();

4.以上的工作完成之后只需要调用notificationmanager的notify()方法就可以让通知显示出来了

activity_main.xml代码如下

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="发送通知"
        />

</LinearLayout>

可以看到我们在布局文件添加一个按钮,用于发送一条通知

MainActivity代码如下所示

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Button button = findViewById(R.id.button);//获取点击按钮
        button.setonClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                notificationmanager manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);
                //获取notificationmanager实例
                Notification notification = new NotificationCompat.Builder(MainActivity.this)

                        .setContentTitle("牛皮哄哄")//通知标题
                        .setContentText("精神小伙") //通知内容
                        .setWhen(System.currentTimeMillis()) //指定通知被创建的时间
                        .setSmallIcon(R.mipmap.ic_launcher)//使用小图标
                        .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))//使用大图片
                        .build();
                manager.notify(1,notification);
            }
        });
    }
}

现在已经完成了通知的创建工作,现在开始点击运行一下,你会惊奇的发现压根就没有效果!!!! 这时百度过后才发现Android8.0以上的的通知要设置渠道,否则就无法显示修改好的代码如下

public class MainActivity extends AppCompatActivity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button = findViewById(R.id.button);//获取点击按钮
        button.setonClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                notificationmanager manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);//获取notificationmanager实例
                NotificationCompat.Builder builder;//创建通知对象
                if (Build.VERSION.SDK_INT >= 26) {//判断Android的版本
                    NotificationChannel channel = new NotificationChannel(String.valueOf(1), "name",
                            notificationmanager.IMPORTANCE_HIGH);  //当Android版本大于等于8时,创建通知渠道(Notification Channels)
                    manager.createNotificationChannel(channel);
                    builder = new NotificationCompat.Builder(MainActivity.this,String.valueOf(1));//获取
                }else {
                    builder = new NotificationCompat.Builder(MainActivity.this);//当版本低于8时使用
                }
                        builder.setContentTitle("牛皮哄哄")//通知标题
                        .setContentText("精神小伙") //通知内容
                        .setWhen(System.currentTimeMillis()) //指定通知被创建的时间
                        .setSmallIcon(R.mipmap.ic_launcher) //使用小图标
                        .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)); //使用大图片
                Notification notification = builder.build();
                manager.notify(1,notification);
            }
        });
    }
}

在上面的代码中加了if语句,这时就能适应所有的Android版本了。

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...