Android的Notifation

作者: Matsonga | 来源:发表于2019-05-28 14:58 被阅读10次

目录结构: 目录结构.png

MainActivity

package com.example.matsonga.notification;

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.support.v4.app.NotificationCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {

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

        Button button = (Button) findViewById(R.id.btn_notifi);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                sendNitifitiopn();
            }
        });
    }
    
    private void sendNitifitiopn() {

        //点击通知要跳转的activity
//        Intent intent1 = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));

        Intent intent = new Intent(MainActivity.this,NotifitonAC.class);
        // 等待的,未决定的Intent。

        /* paddingInent
           getActivity (Context, int, Intent, int)  ------> 跳转到一个activity组件、
        getBroadcast(Context, int, Intent, int)  ------> 打开一个广播组件
        getService  (Context, int, Intent, int)  ------> 打开一个服务组件
         */
         //                                                                 上下文                     使用的intent  表示位
        PendingIntent pendingIntent = PendingIntent.getActivity(
                                                                MainActivity.this,
                                                                0,
                                                                 intent,
                                                                0);

        NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

        if (Build.VERSION.SDK_INT >= 26) {
            //当sdk版本大于26
            String id          = "channel_1";
            String description = "143";
            int    importance  = NotificationManager.IMPORTANCE_LOW;

            NotificationChannel channel = new NotificationChannel(id, description, importance);
//                     channel.enableLights(true);
//                     channel.enableVibration(true);//
            manager.createNotificationChannel(channel);

            Notification notification = new Notification.Builder(MainActivity.this, id)
                    //设置通知类别
                    .setCategory(Notification.CATEGORY_MESSAGE)
                    .setSmallIcon(R.mipmap.cc)
                    .setContentTitle("这是一个推送标题")
                    .setContentText("推送内容,推送内容,推送内容,推送内容")
                    .setContentIntent(pendingIntent)
                    // 将AutoCancel设为true后,当你点击通知栏的notification后,它会自动被取消消失
                    .setAutoCancel(true)
                    // 通过 builder.build() 方法生成 Notification 对象,并发送通知
                    .build();

            // 把notification发送到状态条
            manager.notify(1, notification);

        } else {
            //当sdk版本小于26
            Notification notification = new NotificationCompat.Builder(MainActivity.this)
                    .setContentTitle("这是一个推送标题")
                    .setContentText("推送内容,推送内容,推送内容,推送内容")
                    .setContentIntent(pendingIntent)
                    .setSmallIcon(R.mipmap.cc)
                    .build();
            manager.notify(1, notification);
        }
    }
    /*
     * 添加声音
     * notification.defaults |=Notification.DEFAULT_SOUND;
     * 或者使用以下几种方式
     * notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");
     * notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
     * 如果想要让声音持续重复直到用户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
     * 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
     */
    /*
     * 添加振动
     * notification.defaults |= Notification.DEFAULT_VIBRATE;
     * 或者可以定义自己的振动模式:
     * long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
     * notification.vibrate = vibrate;
     * long数组可以定义成想要的任何长度
     * 如果notification的defaults字段包括了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义的振动
     */
    /*
     * 添加LED灯提醒
     * notification.defaults |= Notification.DEFAULT_LIGHTS;
     * 或者可以自己的LED提醒模式:
     * notification.ledARGB = 0xff00ff00;
     * notification.ledOnMS = 300; //亮的时间
     * notification.ledOffMS = 1000; //灭的时间
     * notification.flags |= Notification.FLAG_SHOW_LIGHTS;
     */
    /*
     * 更多的特征属性
     * notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后自动清除此通知
     * notification.flags |= FLAG_INSISTENT; //重复发出声音,直到用户响应此通知
     * notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在运行"组中
     * notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后,此通知不清除,
     * //经常与FLAG_ONGOING_EVENT一起使用
     * notification.number = 1; //number字段表示此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
     * //如果要使用此字段,必须从1开始
     * notification.iconLevel = ; //
     */

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/btn_notifi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="状态栏信息"/>

</LinearLayout>

NotifitonAC

package com.example.matsonga.notification;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class NotifitonAC extends AppCompatActivity {

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

activity_notifiton_ac.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".NotifitonAC">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="马聪是天才!"/>
</android.support.constraint.ConstraintLayout>

相关文章

网友评论

    本文标题:Android的Notifation

    本文链接:https://www.haomeiwen.com/subject/aoirtctx.html